import EventEmitter from "./event-emitter.cjs"; import OutboundCallSession from "./call-session/outbound.cjs"; import CallSession from "./call-session/index.cjs"; import { DeviceManager, SipClient, SipInfo, WebPhoneOptions } from "./types.cjs"; //#region src/index.d.ts declare class WebPhone extends EventEmitter { sipInfo: SipInfo; sipClient: SipClient; deviceManager: DeviceManager; callSessions: CallSession[]; autoAnswer: boolean; options: WebPhoneOptions; disposed: boolean; constructor(options: WebPhoneOptions); start(): Promise; dispose(): Promise; call(callee: string, callerId?: string, options?: { headers?: Record; }): Promise; } export = WebPhone; //# sourceMappingURL=index.d.cts.map