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