import 'reflect-metadata'; import { RiSEConfig } from './index'; export declare function Command({ method, route, validator, globals }: { method?: string; route?: string; validator?: any; globals?: RiSEConfig['globals']; }): (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor; export declare function Action({ method, route, validator, globals }: { method?: string; route?: string; validator?: any; globals?: RiSEConfig['globals']; }): (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor; export declare function Event(): (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor; export declare function Paginate(): (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor; export declare function Upload(): (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor;