import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.compute.v1"; /** Availability zone. For more information, see [Availability zones](/docs/overview/concepts/geo-scope). */ export interface Zone { /** ID of the zone. */ id: string; /** ID of the region. */ regionId: string; /** Status of the zone. */ status: Zone_Status; } export declare enum Zone_Status { STATUS_UNSPECIFIED = 0, /** UP - Zone is available. You can access the resources allocated in this zone. */ UP = 1, /** DOWN - Zone is not available. */ DOWN = 2, UNRECOGNIZED = -1 } export declare function zone_StatusFromJSON(object: any): Zone_Status; export declare function zone_StatusToJSON(object: Zone_Status): string; export declare const Zone: { encode(message: Zone, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Zone; fromJSON(object: any): Zone; toJSON(message: Zone): unknown; fromPartial, never>>(object: I): Zone; }; 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 {};