export declare class ExportImageRequestBody { private 'bucket_url'?; private 'file_format'?; private 'is_quick_export'?; constructor(bucketUrl?: string, fileFormat?: string); withBucketUrl(bucketUrl: string): ExportImageRequestBody; set bucketUrl(bucketUrl: string | undefined); get bucketUrl(): string | undefined; withFileFormat(fileFormat: ExportImageRequestBodyFileFormatEnum | string): ExportImageRequestBody; set fileFormat(fileFormat: ExportImageRequestBodyFileFormatEnum | string | undefined); get fileFormat(): ExportImageRequestBodyFileFormatEnum | string | undefined; withIsQuickExport(isQuickExport: boolean): ExportImageRequestBody; set isQuickExport(isQuickExport: boolean | undefined); get isQuickExport(): boolean | undefined; } /** * @export * @enum {string} */ export declare enum ExportImageRequestBodyFileFormatEnum { QCOW2 = "qcow2", VHD = "vhd", ZVHD = "zvhd", VMDK = "vmdk" } //# sourceMappingURL=ExportImageRequestBody.d.ts.map