import type { AcurisClient } from "../client.js"; import type { PhoneValidateOptions, PhoneValidateBatchResult } from "../types.js"; /** * Validate up to 1,000 phone numbers in one synchronous request. Charges N * phone credits atomically — rejects with HTTP 403 `insufficient_phone_credits` * if the key doesn't have enough headroom. Fully offline, so there is no * per-number network cost. */ export declare function validatePhoneBatch(client: AcurisClient, phones: string[], options?: PhoneValidateOptions): Promise; //# sourceMappingURL=validatePhoneBatch.d.ts.map