import { HTTPDecorator } from './decorator'; export declare function form(paramName?: string): HTTPDecorator; export declare function path(paramName?: string): HTTPDecorator; export declare function query(paramName?: string): HTTPDecorator; export declare function json(paramName?: string): HTTPDecorator; export declare function header(paramName?: string): HTTPDecorator; export declare function cookie(paramName?: string): HTTPDecorator; export declare function files(): HTTPDecorator; export declare function raw(): HTTPDecorator;