import { MethodOptions } from './types/MethodMetadataTypes';
export declare function Get(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Post(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Put(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Options(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Patch(path?: string, options?: MethodOptions): MethodDecorator;
export declare function Delete(path?: string, options?: MethodOptions): MethodDecorator;
