import { ApiDefinition } from "../api"; import { TenantEntityProps } from "./tenants"; export type Group = { id: string; name: string; }; export type AssignTenantGroupsProps = { groupIds: string[]; } & TenantEntityProps; export declare const assignTenantGroups: ApiDefinition; export type RemoveTenantGroupProps = { id: Group["id"]; } & TenantEntityProps; export declare const removeTenantGroup: ApiDefinition; export declare const getTenantGroups: ApiDefinition;