import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the control's value pass an email validation test. * * State: * * patternMismatch * * @public * @param element * @returns null if the validation check passes, otherwise an object containing information. */ export declare function emailValidator(element: HTMLElement & { value: string | null; }): Nullable; /** * Checks if the value is a valid email address. * * @param value - The value to check. * @returns True if the value is a valid email address, false otherwise. */ export declare function isEmailValue(value: unknown): boolean; //# sourceMappingURL=EmailElementValidatorFn.d.ts.map