export function subscribe(room: string, f: (arg0: any) => any): Set; export function unsubscribe(room: string, f: (arg0: any) => any): boolean; export function publish(room: string, data: any): void; export type Channel = { subs: Set; bc: any; }; //# sourceMappingURL=broadcastchannel.d.ts.map