import { ApiDefinition } from "../api"; import { TenantEntityProps } from "./tenants"; export type User = { id: string; username: string; name: string; email: string; }; export type AssignTenantUsersProps = { userIds: string[]; } & TenantEntityProps; export declare const assignTenantUsers: ApiDefinition; export type RemoveTenantUserProps = { id: User["id"]; } & TenantEntityProps; export declare const removeTenantUser: ApiDefinition; export declare const getTenantUsers: ApiDefinition;