import type { Nullable } from '../../../Types/Nullable'; import type { ElementValidationError } from './Abstracts/Interfaces/IElementValidator'; /** * Validator that requires the control's value be true. This validator is commonly used for required checkboxes. * * State: * * valueMissing * * @public * @param control * @returns null if the validation check passes, otherwise an object containing information. */ export declare function requiredTrueValidator(element: HTMLElement & { value: boolean; }): Nullable; //# sourceMappingURL=RequiredTrueElementValidatorFn.d.ts.map