import * as Koa from 'koa'; export declare abstract class HTTPMiddleware { abstract use(ctx: Koa.Context, next: () => Promise): any; }