import { Router } from './router.js'; import 'express'; declare const scanner: { router(dir: string): Promise<{ router: ReturnType; paths: string[]; }>; event(): Promise; task(): Promise; }; type Scanner = typeof scanner; export { type Scanner, scanner };