interface Options {
    host?: string;
    port?: number;
    path?: string;
    debug?: boolean;
}
declare function createWebRTC(options?: Options): void;

export { createWebRTC };
