import type { Result, Router } from '../../router'; export declare class SmartRouter implements Router { name: string; constructor(init: { routers: Router[]; }); add(method: string, path: string, handler: T): void; match(method: string, path: string): Result; get activeRouter(): Router; }