import { BodyOptions } from '../'; /** * Class-based view body decorator. * If it is used to decorate a variable on a class-based view, body of current request is injected into this variable. * @param options * @returns {(target: any, key: string) => void} * @constructor */ export declare function Body(options?: BodyOptions): (...args: any[]) => void;