export interface AzureBlobStoragePatchConfig {
accessKey?: string;
account?: string;
container?: string;
}
export declare const AzureBlobStoragePatchConfigSerializer: {
_fromJsonObject(object: any): AzureBlobStoragePatchConfig;
_toJsonObject(self: AzureBlobStoragePatchConfig): any;
};