import { Tenant } from "../../../utility/api/tenants"; import { FC } from "react"; import { OnSearch } from "./AssignEntityModal"; import { Group } from "../../../utility/api/tenants/groups"; type GroupsProps = { tenant: Tenant; onSearch: OnSearch; onClick?: (entity: Group) => unknown; }; declare const Groups: FC; export default Groups;