import { PackId, ResponseModel, SmsConfig } from "../utils"; /** * Response from the pack report API */ export interface ReportPackByIdResponse { messageId: number; mobile: number; messageText: string; sendDateTime: number; lineNumber: number; cost: number; deliveryState: number; deliveryDateTime: number; } /** * Creates a ReportPackById function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to retrieve messages from a specific pack */ export declare const createReportPackById: ({ apiKey }: Pick) => (packId: PackId) => Promise>; //# sourceMappingURL=reportPackById.d.ts.map