export declare class ValidatorDecorator { required(message?: string): (...args: any[]) => void; range(min: number, max?: number, message?: string): (...args: any[]) => void; email(message?: string): (...args: any[]) => void; } export declare const val: ValidatorDecorator;