import { Gusher } from "./gusher"; import { Channel } from "./channel"; export declare class Channels { channels: Map; constructor(); add(name: string, gusher: Gusher): Channel; all(): string[]; find(name: string): Channel | undefined; remove(name: string): Channel | undefined; disconnect(): void; }