import { Parameters, ResponseModel, SmsConfig } from "../utils"; /** * Request body for sending verification code SMS */ export interface SendVerifyCodeBody { mobile: string; templateId: number; parameters: Array; } /** * Response from the send verification code API */ export interface SendVerifyCodeResponse { messageId: number; cost: number; } /** * Creates a SendVerifyCode function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to send verification code SMS messages */ export declare const createSendVerifyCode: ({ apiKey }: Pick) => (mobile: string, templateId: number, parameters: Array) => Promise>; //# sourceMappingURL=sendVerifyCode.d.ts.map