import { ApiDefinition } from "../api"; export declare const GROUPS_ENDPOINT = "/groups"; export type Group = { id: string; name: string; organizationId: string; }; export declare const getGroups: ApiDefinition; export type GetGroupParams = { id: Group["id"]; organizationId: string; }; export declare const getGroup: ApiDefinition; export type CreateGroupParams = { name: Group["name"]; organizationId: string; }; export declare const createGroup: ApiDefinition; export declare const updateGroup: ApiDefinition; type DeleteGroupParams = GetGroupParams; export declare const deleteGroup: ApiDefinition; export {};