export declare function Max(max: number, errorMessage?: string): (target: Object, property: string | symbol) => void; export declare function hasMax(instance: T, property: keyof T): boolean; export declare function getMaxModel(instance: T, property: keyof T): { max: number; errorMessage: string; } | null;