import { ParameterizedContext, Next } from "koa"; declare type TimeoutOptions = { status: number; }; export declare function timeout(time: number, { status }?: TimeoutOptions): (ctx: ParameterizedContext, next: Next) => Promise; export {};