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