import { PackId, SmsConfig } from "../utils"; /** * Response from the delete scheduled SMS API */ export interface DeleteScheduledResponse { returnedCreditCount: number; smsCount: number; } /** * Creates a DeleteScheduled function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to delete scheduled SMS packs */ export declare const createDeleteScheduled: ({ apiKey, }: Pick) => (packId: PackId) => Promise>; //# sourceMappingURL=deleteScheduled.d.ts.map