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