import type { KoaContext, KoaNext } from '../com-types';
/**
 * 中间件生成器
 */
export default function notFound(): (ctx: KoaContext, next: KoaNext) => Promise<void>;
