import { PackId, ResponseModel, SmsConfig } from "../utils"; /** * Response from the daily pack report API */ export interface ReportDailyPackResponse { packId: PackId; recipientCount: number; creationDateTime: number; } /** * Creates a ReportDailyPack function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to retrieve daily SMS pack reports */ export declare const createReportDailyPack: ({ apiKey, }: Pick) => (pageNumber?: number, pageSize?: number) => Promise>; //# sourceMappingURL=reportDailyPack.d.ts.map