import BasicMapping from './BasicMapping';
declare class PostMapping extends BasicMapping {
}
/**
 * 配置一个POST请求映射
 * 例如：
 *
 *    @RequestMapping('/user/')
 *    @RequestMapping(['/user','/hello'],'GET')
 *    @RequestMapping('/user','POST','application/json')
 *    RequestMapping({ value:'/user',method:'POST',produces:'application/json',consumes:''  })
 * @param {String/Object/Array} value 可以为对象，或者为path的字符串数组 '/user'  ['/user' ] { value:'xxx',method:'' }
 */
declare const _default: {
    (options: string | string[] | import("../Target").CreateOptions<typeof PostMapping>): MethodDecorator;
    (target: {
        [x: string]: any;
    }, propertyKey: string, descriptor: TypedPropertyDescriptor<any>): any;
} & import("../annotation/type").LinkAnnotationType<typeof PostMapping> & typeof PostMapping;
export default _default;
