import { ResponseModel, SmsConfig } from "../utils"; /** * Response from the receive live report API */ export interface ReportReceiveLiveResponse { messageText: string; number: number; mobile: number; receivedDateTime: number; } /** * Creates a ReportReceiveLive function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to retrieve live received messages */ export declare const createReportReceiveLive: ({ apiKey, }: Pick) => (pageNumber?: number, pageSize?: number, sortByNewest?: boolean) => Promise>; //# sourceMappingURL=reportReceiveLive.d.ts.map