import type { BaseQueryApi } from "@reduxjs/toolkit/query"; import type { IRTCPeerConnection, IRTCDataChannel } from "../api/webrtc/interfaces"; export interface OpenChannelHelperParams { channel: string | RTCDataChannel; epc: IRTCPeerConnection; roomId: string; dataChannels: IRTCDataChannel[]; } export declare const handleOpenChannel: ({ channel, epc, roomId, dataChannels }: OpenChannelHelperParams, api: BaseQueryApi) => Promise; //# sourceMappingURL=handleOpenChannel.d.ts.map