import { ValidatorError } from '../validator-error';
export declare class MinLengthValidationError extends ValidatorError<{
    minLength: number;
    currentLength: number;
}> {
    constructor(params: {
        minLength: number;
        currentLength: number;
    });
}
