export declare function Min(min: number, errorMessage?: string): (target: Object, property: string | symbol) => void; export declare function hasMin(instance: T, property: keyof T): boolean; export declare function getMinModel(instance: T, property: keyof T): { min: number; errorMessage: string; } | null;