import { PlayGroup } from './play-group.js'; export declare class NewPlayGroup { name: string; description?: string; } export declare class PlayGroupPatch { name: string; description?: string; } export declare class PlayGroupList { items: PlayGroup[]; total: number; }