import type { IValidation } from '../types'; export declare class LengthValidation implements IValidation { private length?; private minLength?; private maxLength?; constructor(length?: number, minLength?: number, maxLength?: number); validate(value: any): void; }