export declare const RequestParam: (paramsKey: any) => ParameterDecorator; export declare const RequestBody: (paramsKey?: any) => (target: Object, propertyKey: string, parameterIndex: number) => any; export declare const PathVariable: (paramsKey: any) => (target: Object, propertyKey: string, parameterIndex: number) => any; export declare const Response: () => (target: Object, propertyKey: string, parameterIndex: number) => void; export declare const Request: () => (target: Object, propertyKey: string, parameterIndex: number) => void; export declare const HeaderParams: (paramsKey?: any) => (target: Object, propertyKey: string, parameterIndex: number) => void; export declare const Next: () => (target: Object, propertyKey: string, parameterIndex: number) => void; export declare const Err: () => (target: any, propertyKey: string, parameterIndex: number) => void;