/**
 * @module ResponseBody
 * @description 标注返回内容类型为body
 */
declare class ResponseBody {
}
/**
 * 标注当前返回ResponseBody结果
 */
declare const _default: {
    (target: Function): any;
    (options: import("./Target").CreateOptions<typeof ResponseBody>): {
        (target: Function): any;
        (target: Object, name: string, descriptor: TypedPropertyDescriptor<any>): any;
    };
    (target: {
        [x: string]: any;
    }, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): any;
} & import("./annotation/type").LinkAnnotationType<typeof ResponseBody> & typeof ResponseBody;
export default _default;
