export declare class CreateDataImage { name?: string; private 'volume_id'?; description?: string; tags?: Array; constructor(name?: string, volumeId?: string); withName(name: string): CreateDataImage; withVolumeId(volumeId: string): CreateDataImage; set volumeId(volumeId: string | undefined); get volumeId(): string | undefined; withDescription(description: string): CreateDataImage; withTags(tags: Array): CreateDataImage; } //# sourceMappingURL=CreateDataImage.d.ts.map