import { ValidationFunction } from './types'; export declare enum ValidateCheckedError { 'notChecked' = "notChecked" } declare type CheckedValidationResult = ValidateCheckedError | undefined; declare const getCheckedValidator: () => ValidationFunction; export default getCheckedValidator;