import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.organizationmanager.v1"; /** Group mapping represents which external (federated) groups should match which internal (cloud) groups */ export interface GroupMappingItem { /** External group id (received from identity provider) */ externalGroupId: string; /** Internal cloud group id */ internalGroupId: string; } /** * Group synchronization status for a specific federation * Absence of this object for a federation means that there is no group synchronization set of for the federation. */ export interface GroupMapping { /** Federation id */ federationId: string; /** Flag to show whether group synchronization should be enabled for this federation. */ enabled: boolean; } export declare const GroupMappingItem: { encode(message: GroupMappingItem, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GroupMappingItem; fromJSON(object: any): GroupMappingItem; toJSON(message: GroupMappingItem): unknown; fromPartial, never>>(object: I): GroupMappingItem; }; export declare const GroupMapping: { encode(message: GroupMapping, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GroupMapping; fromJSON(object: any): GroupMapping; toJSON(message: GroupMapping): unknown; fromPartial, never>>(object: I): GroupMapping; }; 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 {};