import { type CreatedBy } from "../../../../../lib/graph-write/dist/index.js"; interface GroupCreateParams { groupName: string; agentSlug: string; participants: string[]; accountId: string; createdBy: CreatedBy; } interface GroupCreateResult { sessionId: string; groupSlug: string; joined: string[]; notFound: string[]; shareableUrl: string; } export declare function groupCreate(params: GroupCreateParams): Promise; export {}; //# sourceMappingURL=group-create.d.ts.map