import { Middleware } from '../middleware'; import { Context } from '../context'; import { Options } from 'body-parser'; import { HandlerExecutionChain } from '../handler'; export declare class BodyMiddleware implements Middleware { protected handlerExecutionChain: HandlerExecutionChain; protected readonly options: Options; handle(ctx: Context, next: () => Promise): Promise; readonly priority: number; } //# sourceMappingURL=body-middleware.d.ts.map