import { PlayGroup } from './play-group.js'; import { NewPlayGroup, PlayGroupPatch } from './play-group-type.js'; export declare class PlayGroupMutation { createPlayGroup(playGroup: NewPlayGroup, context: ResolverContext): Promise; updatePlayGroup(id: string, patch: PlayGroupPatch, context: ResolverContext): Promise; reorderPlayGroup(id: string, boardIds: string[], context: ResolverContext): Promise; joinPlayGroup(id: string, boardIds: string[], context: ResolverContext): Promise; leavePlayGroup(id: string, boardIds: string[], context: ResolverContext): Promise; deletePlayGroup(id: string, context: ResolverContext): Promise; }