import { Group } from './group.js'; import { GroupPatch, NewGroup } from './group-type.js'; export declare class GroupMutation { createGroup(group: NewGroup, context: ResolverContext): Promise; updateGroup(id: string, patch: GroupPatch, context: ResolverContext): Promise; joinGroup(id: string, boardIds: string[], context: ResolverContext): Promise; deleteGroup(id: string, context: ResolverContext): Promise; }