import { WebrtcCallOptions } from "../options/WebrtcCallOptions"; import { Endpoint } from "../../util/Endpoint"; import { DefaultWebrtcCall } from "./DefaultWebrtcCall"; import { InfobipRTC } from "../../InfobipRTC"; import { Logger } from "../../log/Logger"; export declare class DefaultOutgoingWebrtcCall extends DefaultWebrtcCall { constructor(infobipRtc: InfobipRTC, webrtcCallOptions: WebrtcCallOptions, currentUserIdentity: string, counterpartIdentity: string, logger: Logger); counterpart(): Endpoint; private mapOptions; }