import { StateEnum } from './disk/StateEnum';
import { TypeEnum } from './disk/TypeEnum';
/** Information about a disk of a VPS Virtual Machine */
export interface Disk {
    /**  */
    bandwidthLimit: number;
    /**  */
    id: number;
    /** The low disk free space threshold in MiB */
    lowFreeSpaceThreshold?: number;
    /** The monitoring state of this disk */
    monitoring?: boolean;
    /** Service name */
    serviceName?: string;
    /**  */
    size: number;
    /**  */
    state: StateEnum;
    /**  */
    type: TypeEnum;
}
//# sourceMappingURL=Disk.d.ts.map