export declare const Get: (path?: string) => (target: Object, key: string | symbol, descriptor: TypedPropertyDescriptor<unknown>) => void;
export declare const Post: (path?: string) => (target: Object, key: string | symbol, descriptor: TypedPropertyDescriptor<unknown>) => void;
export declare const Put: (path?: string) => (target: Object, key: string | symbol, descriptor: TypedPropertyDescriptor<unknown>) => void;
export declare const Patch: (path?: string) => (target: Object, key: string | symbol, descriptor: TypedPropertyDescriptor<unknown>) => void;
export declare const Delete: (path?: string) => (target: Object, key: string | symbol, descriptor: TypedPropertyDescriptor<unknown>) => void;
