import { ValidationRule } from '../validation_rule'; export interface IParams { min: number; max: number; } export declare class LengthValidator extends ValidationRule { protected conditions: Array; }