declare class ServletRequest {
}
/**
 * 从servlet上下文中提取request
 *
 * action(@ServletRequest request)
 *
 */
declare const _default: {
    (options: import("../Target").CreateOptions<typeof ServletRequest>): ParameterDecorator;
    (target: {
        [x: string]: any;
    }, propertyKey: string, parameterIndex: number): any;
} & import("../annotation/type").LinkAnnotationType<typeof ServletRequest> & typeof ServletRequest;
export default _default;
