import { HttpDecoratorOptions } from '../options'; export declare function get(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void; export declare function query(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void; export declare function post(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void; export declare function put(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void; export declare function patch(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void; export declare function del(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void; export declare function head(path: string, options?: HttpDecoratorOptions): (instance: any, method: string) => void;