import { PhoneCallOptions } from "../options/PhoneCallOptions";
import { Endpoint } from "../../util/Endpoint";
import { DefaultCall } from "./DefaultCall";
import { PhoneCall } from "../PhoneCall";
import { InfobipRTC } from "../../InfobipRTC";
export declare class DefaultOutgoingPhoneCall extends DefaultCall implements PhoneCall {
    constructor(infobipRtc: InfobipRTC, phoneCallOptions: PhoneCallOptions, currentUserIdentity: string, phoneNumberDestination: string);
    counterpart(): Endpoint;
    options(): PhoneCallOptions;
    private mapOptions;
    private initEventHandlers;
}
