import { HTTP_METHOD } from "../constants/methods.constant"; export interface IHookOptions { priority?: number; } export declare function BeforeHook(path?: string, method?: HTTP_METHOD, options?: IHookOptions): (target: any, property: string, descriptor: any) => void; export declare function AfterHook(path?: string, method?: HTTP_METHOD, options?: IHookOptions): (target: any, property: string, descriptor: any) => void;