type Context = any; type Next = any; type Middleware = (ctx: Context, next: Next) => Promise; declare function koaErrorMiddleware(): Middleware; export { koaErrorMiddleware };