/** Image */
export interface Image {
    /** Image creation date */
    creationDate: string;
    /** Image usable only for this type of flavor if not null */
    flavorType?: string;
    /** Image id */
    id: string;
    /** Minimum disks required to use image */
    minDisk: number;
    /** Minimum RAM required to use image */
    minRam: number;
    /** Image name */
    name: string;
    /** Order plan code */
    planCode?: string;
    /** Image region */
    region: string;
    /** Image size (in GiB) */
    size: number;
    /** Image status */
    status: string;
    /** Tags about the image */
    tags?: string[];
    /** Image type */
    type: string;
    /** User to connect with */
    user: string;
    /** Image visibility */
    visibility: string;
}
//# sourceMappingURL=Image.d.ts.map