import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the control have a non-empty value. * * State: * * valueMissing * * @public * @param control * @returns null if the validation check passes, otherwise an object containing information. */ export declare function requiredValidator(element: HTMLElement & { value: string | null; required: boolean; }): Nullable; //# sourceMappingURL=RequiredElementValidatorFn.d.ts.map