import CallSession from "./index.cjs"; import WebPhone from "../index.cjs"; //#region src/call-session/outbound.d.ts declare class OutboundCallSession extends CallSession { constructor(webPhone: WebPhone, callee: string); private callee; get remoteNumber(): string; call(callerId?: string, options?: { headers?: Record; }): Promise; cancel(): Promise; } export = OutboundCallSession; //# sourceMappingURL=outbound.d.cts.map