export declare function Required(errorMessage?: string): (target: Object, property: string | symbol) => void; export declare function isRequired(instance: T, property: keyof T): boolean; export declare function getRequiredModel(instance: T, property: keyof T): { errorMessage: string; } | null;