/** * Class-based view request parameters injection decorator. * * @tutorial To get request parameters in your class based view, create a variable and decorate it * with @RequestObjectParams(). You also need to follow Express naming conventions for eliciting the request parameters * from the route string: * @example route: '/:thisRequestParam' - this 'thisRequestParam' will be substituted with the required value. * @example @RequestObjectParams() private requestParams: object; * @returns {(target: any, key: string) => void} * @constructor */ export declare function RequestParams(): (target: any, key: string) => void;