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