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