/** * Validation schema factory * Creates validation rules for form fields * @returns Object containing validation functions for each field */ export declare const createValidationSchema: () => { email: (value: string) => string | undefined; /** * Advisory "did you mean" hint for a likely domain typo. * Never blocks submission - the email is already valid when this returns. */ emailSuggestion: (value: string) => string | undefined; phoneNumber: (value: string, countryCode?: string) => string | undefined; name: (value: string) => string | undefined; street: (value: string) => string | undefined; firstName: (value: string) => string | undefined; lastName: (value: string) => string | undefined; city: (value: string) => string | undefined; state: (value: string, country?: string) => string | undefined; zipCode: (value: string) => string | undefined; country: (value: string) => string | undefined; }; //# sourceMappingURL=createValidationSchema.d.ts.map