import { RemoteEvents } from './RemoteSuite'; import { ChannelOptions } from './channels/Base'; export { ChannelOptions }; export default class Channel { readonly options: ChannelOptions; private _channel; private _initialized; constructor(options: ChannelOptions); sendMessage(name: keyof RemoteEvents, data: any): Promise; protected _initialize(): Promise; }