import { Validator } from './validator'; export declare const minLengthValidatorKey = "minLength"; export declare const minLengthValidator: (minLength: number) => Validator; export type MinLengthValidatorResult = ReturnType>;