import type { ValidationContext, Validator } from '../Validator.js'; export interface MinLengthValidatorOptions { minLength: number; message?: (params: ValidationContext & { minLength: number; value: T; }) => string; } export declare function minLengthValidator(options: MinLengthValidatorOptions): Validator;