export declare function Path(name: string): (...args: any[]) => void; export declare function Query(name?: string): (...args: any[]) => void; export declare function Cookie(name: string, expireInSecond?: number): (...args: any[]) => void; export declare function Header(name?: string): (...args: any[]) => void; export declare function Body(name?: string): (...args: any[]) => void;