import { RealTimeConnection } from '@feathersjs/feathers'; import { Channel } from './base'; export declare class CombinedChannel extends Channel { children: Channel[]; mappings: WeakMap; constructor(children: Channel[], data?: any); refresh(): this & { connections: RealTimeConnection[]; mappings: WeakMap; }; leave(...connections: RealTimeConnection[]): this; join(...connections: RealTimeConnection[]): this; dataFor(connection: RealTimeConnection): any; private callChildren; }