import { RTCConnectionArg } from "./rtc.type"; interface InitializerConfig { context: any; selectors: { channel: symbol; channelOpen: symbol; deinit: symbol; emitter: symbol; }; connection: RTCConnectionArg; channelName: string; channelId?: number; messageFilterType: 'request' | 'response'; } export declare function initialize({ context, selectors: { channel, channelOpen, deinit, emitter }, connection, channelName, channelId, messageFilterType }: InitializerConfig): void; export {};