import { IntlShape } from 'react-intl'; import { z } from 'zod'; /** * Build a zod schema for email fields and centralize the validation error message * definitions. */ export declare const buildEmailValidationSchema: (intl: IntlShape, label: string, customRequiredMessage?: string | undefined) => z.ZodString;