import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.resourcemanager.v1"; /** A Cloud resource. For more information, see [Cloud](/docs/resource-manager/concepts/resources-hierarchy#cloud). */ export interface Cloud { /** ID of the cloud. */ id: string; /** Creation timestamp. */ createdAt?: Date; /** Name of the cloud. 3-63 characters long. */ name: string; /** Description of the cloud. 0-256 characters long. */ description: string; /** ID of the organization that the cloud belongs to. */ organizationId: string; /** Resource labels as `` key:value `` pairs. Maximum of 64 per resource. */ labels: { [key: string]: string; }; } export interface Cloud_LabelsEntry { key: string; value: string; } export declare const Cloud: { encode(message: Cloud, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Cloud; fromJSON(object: any): Cloud; toJSON(message: Cloud): unknown; fromPartial, never>) | undefined; } & Record, never>>(object: I): Cloud; }; export declare const Cloud_LabelsEntry: { encode(message: Cloud_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Cloud_LabelsEntry; fromJSON(object: any): Cloud_LabelsEntry; toJSON(message: Cloud_LabelsEntry): unknown; fromPartial, never>>(object: I): Cloud_LabelsEntry; }; 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 {};