export declare function get(url: string): (target: object, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
export declare function post(url: string): (target: object, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
export declare function put(url: string): (target: object, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
export declare function del(url: string): (target: object, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
