import InboundMessage from "../sip-message/inbound.cjs"; import CallSession from "./index.cjs"; import WebPhone from "../index.cjs"; import RcMessage from "../rc-message/rc-message.cjs"; //#region src/call-session/inbound.d.ts declare class InboundCallSession extends CallSession { constructor(webPhone: WebPhone, inviteMessage: InboundMessage); get rcApiCallInfo(): { callerIdName?: string; queueName?: string; } | undefined; confirmReceive(): Promise; toVoicemail(): Promise; decline(): Promise; forward(target: string): Promise; startReply(): Promise; reply(text: string): Promise; answer(): Promise; protected sendRcMessage(cmd: number, body?: Record | { RepTp: string; Bdy: string; } | { FwdDly: string; Phn: string; PhnTp: string; }): Promise; } export = InboundCallSession; //# sourceMappingURL=inbound.d.cts.map