import { ResponseModel, SmsConfig } from "../utils"; /** * Response from the latest receive report API */ export interface ReportLatestReceiveResponse { receiveReturnId: number; messageText: string; number: number; mobile: number; receivedDateTime: number; } /** * Creates a ReportLatestReceive function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to retrieve latest received messages */ export declare const createReportLatestReceive: ({ apiKey, }: Pick) => (count?: number) => Promise>; //# sourceMappingURL=reportLatestReceive.d.ts.map