import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.datasphere.v2"; export interface Community { /** ID of the community. */ id: string; /** Time when community was created. */ createdAt?: Date; /** Name of the community. */ name: string; /** Description of the comminuty. */ description: string; /** Labels of the community. */ labels: { [key: string]: string; }; /** ID of the user who created the community. */ createdById: string; /** ID of the organization to which community belongs. */ organizationId: string; /** ID of the zone where this community was created */ zoneId: string; } export interface Community_LabelsEntry { key: string; value: string; } export declare const Community: { encode(message: Community, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Community; fromJSON(object: any): Community; toJSON(message: Community): unknown; fromPartial, never>) | undefined; createdById?: string | undefined; organizationId?: string | undefined; zoneId?: string | undefined; } & Record, never>>(object: I): Community; }; export declare const Community_LabelsEntry: { encode(message: Community_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Community_LabelsEntry; fromJSON(object: any): Community_LabelsEntry; toJSON(message: Community_LabelsEntry): unknown; fromPartial, never>>(object: I): Community_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 {};