import { SmsConfig } from "../utils"; /** * Response from the credit API */ export interface GetCreditResponse { credit: number; } /** * Creates a GetCredit function with pre-configured API credentials * * @param apiKey - SMS.ir API key for authentication * @returns A function to retrieve account credit balance */ export declare const createGetCredit: ({ apiKey }: Pick) => () => Promise>; //# sourceMappingURL=getCredit.d.ts.map