import { ResponseModel, SmsConfig } from "../utils"; /** * Response from the send by URL API */ export interface SendByURLResponse { messageId: number; cost: number; } /** * Creates a SendByURL function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @param lineNumber - Default line number for sending messages * @returns A function to send SMS via URL parameters (legacy method) */ export declare const createSendByURL: ({ apiKey, lineNumber }: SmsConfig) => (username: string, mobile: string, text: string, customLine?: number) => Promise>; //# sourceMappingURL=sendByURL.d.ts.map