export declare enum RequestMethod { GET = "GET", POST = "POST", PUT = "PUT", OPTION = "OPTION", HEAD = "HEAD", DELETE = "DELETE", TRACE = "TRACE", CONNECT = "CONNECT" } export declare type TPathObjArgs = { value?: string | string[]; method?: RequestMethod | RequestMethod[]; }; export declare function Path(...args: string[]): Function; export declare function Path(arg: { value?: string | string[]; method?: RequestMethod | RequestMethod[]; }): Function;