import CallSession from "./index.mjs"; import WebPhone from "../index.mjs"; //#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; } //#endregion export { OutboundCallSession as default }; //# sourceMappingURL=outbound.d.mts.map