import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.baremetal.v1alpha"; /** Disk drive type. */ export declare enum DiskDriveType { /** DISK_DRIVE_TYPE_UNSPECIFIED - Unspecified disk drive type. */ DISK_DRIVE_TYPE_UNSPECIFIED = 0, /** HDD - Hard disk drive. */ HDD = 1, /** SSD - Solid state drive. */ SSD = 2, UNRECOGNIZED = -1 } export declare function diskDriveTypeFromJSON(object: any): DiskDriveType; export declare function diskDriveTypeToJSON(object: DiskDriveType): string; /** Disk. */ export interface Disk { /** ID of the disk. */ id: string; /** Type of the disk drive. */ type: DiskDriveType; /** Size of the disk in gibibytes (2^30 bytes). */ sizeGib: number; } export declare const Disk: { encode(message: Disk, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Disk; fromJSON(object: any): Disk; toJSON(message: Disk): unknown; fromPartial, never>>(object: I): Disk; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};