import type { USAddressFormData } from "./_useUSAddressFormData"; /** * Manages the ZIP code field for a US address. * @param formData - The form data object containing the ZIP code. * @returns An object containing ZIP code display, validity, wrapper class, input handler, and reset function. */ export declare function useUSAddressZip(formData: USAddressFormData, zipInputId?: string): { zipDisplay: import("vue").Ref; isZipValid: import("vue").ComputedRef; zipWrapperClass: string; onZipInput: (...args: unknown[]) => void; resetZip: () => void; };