import { PlayGroup } from '../types.js'; export declare function playlists(): Promise<{ name: string; description: string; }[]>; export declare function fetchPlayGroupList(): Promise; export declare function fetchPlayGroup(groupId: string): Promise; export declare function fetchPlayGroupByName(name: string): Promise; export declare function createPlayGroup(group: PlayGroup): Promise; export declare function updatePlayGroup(group: PlayGroup): Promise; export declare function deletePlayGroup(id: string): Promise; export declare function joinPlayGroup(boardId: string, group: PlayGroup): Promise; export declare function leavePlayGroup(boardId: string, groupId: string): Promise;