import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.organizationmanager.v1"; /** * A Group resource. * For more information, see [Groups](/docs/organization/operations/manage-groups). */ export interface Group { /** ID of the group. */ id: string; /** ID of the organization that the group belongs to. */ organizationId: string; /** Creation timestamp. */ createdAt?: Date; /** Name of the group. */ name: string; /** Description of the group. */ description: string; } export declare const Group: { encode(message: Group, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Group; fromJSON(object: any): Group; toJSON(message: Group): unknown; fromPartial, never>>(object: I): Group; }; 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 {};