import type { AcurisClient } from "../client.js"; import type { AddressInput, ValidateOptions, ValidationResult } from "../types.js"; /** * Validate an address. Accepts a single-line string or a structured object. * * Country must be resolvable — either on the structured input, or via * `options.country`. If neither is set we throw an AcurisValidationError * client-side rather than send a useless request. */ export declare function validateAddress(client: AcurisClient, input: AddressInput, options?: ValidateOptions): Promise; //# sourceMappingURL=validate.d.ts.map