export declare function MinLength(length: number, errorMessage?: string): (target: Object, property: string | symbol) => void; export declare function hasMinLength(instance: T, property: keyof T): boolean; export declare function getMinLengthModel(instance: T, property: keyof T): { minLength: number; errorMessage: string; } | null;