export interface RouteOptions { } export declare function Delete(path: string, options?: RouteOptions): MethodDecorator; export declare function Get(path: string, options?: RouteOptions): MethodDecorator; export declare function Patch(path: string, options?: RouteOptions): MethodDecorator; export declare function Post(path: string, options?: RouteOptions): MethodDecorator; export declare function Put(path: string, options?: RouteOptions): MethodDecorator;