// @ts-nocheck export declare function Path(name: string): (target: any, propertyKey: string | symbol, parameterIndex: number) => void; export declare function Query(name?: string): (target: any, propertyKey: string | symbol, parameterIndex: number) => void; export declare function Cookie(name: string, expireInSecond?: number): (target: any, propertyKey: string | symbol, parameterIndex: number) => void; export declare function Header(name?: string): (target: any, propertyKey: string | symbol, parameterIndex: number) => void; export declare function Body(name?: string): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;