export declare class Validator { private constructor(); static isNumber(any: any): boolean; static isArray(any: any, minLength?: number): boolean; static isObject(any: any): boolean; static isString(any: any, minLength?: number): boolean; }