import { ResponseModel, SmsConfig } from "../utils"; /** * Response from the archive report API */ export interface ReportArchiveResponse { messageId: number; mobile: number; messageText: string; sendDateTime: number; lineNumber: number; cost: number; deliveryState: number; deliveryDateTime: number; } /** * Creates a ReportArchive function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to retrieve archived message reports */ export declare const createReportArchive: ({ apiKey }: Pick) => (fromDate?: number, toDate?: number, pageNumber?: number, pageSize?: number) => Promise>; //# sourceMappingURL=reportArchive.d.ts.map