import type { AcurisClient } from "../client.js"; import type { PhoneValidateOptions, PhoneValidationResult } from "../types.js"; /** * Validate a single phone number, entirely offline (Google libphonenumber * metadata): E.164 / international / national formats, validity, line type, * carrier, region, time zone(s), an SMS-capable flag, plus premium-rate / * toll-free / short-number / emergency flags. * * Charges 1 phone_credit per call — a pool separate from address validation, * geocoding and email (bundled free with AV/Geo plans). */ export declare function validatePhone(client: AcurisClient, phone: string, options?: PhoneValidateOptions): Promise; //# sourceMappingURL=validatePhone.d.ts.map