import { DiskTypeEnum } from './DiskTypeEnum';
/** Disk properties (size and type of disk) */
export interface DiskType {
    /** Type of the disk */
    type: DiskTypeEnum;
    /** Unit for disk size */
    unit: string;
    /** Size of the disk */
    value: number;
}
//# sourceMappingURL=DiskType.d.ts.map