///
import { InfobipGateway } from "../../gateway/InfobipGateway";
import { EventEmitter } from "events";
import { Logger } from "../../log/Logger";
import { Device } from "../../device/Device";
import { DefaultApplicationCall } from "./DefaultApplicationCall";
import { ApplicationCallOptions } from "../options/ApplicationCallOptions";
export declare class DefaultOutgoingApplicationCall extends DefaultApplicationCall {
static WEBRTC_CALLS_CONFIGURATION_ID: string;
constructor(eventEmitter: EventEmitter, gateway: InfobipGateway, logger: Logger, rtcConfig: any, device: Device, callsConfigurationId: string, options: ApplicationCallOptions, currentUserIdentity: string, token: string, apiUrl: string);
protected negotiateAudio(options: ApplicationCallOptions): Promise;
private sendOffer;
}