import type { IRouterResult, IRouter } from '@iopa/types'; import { Node } from './node'; export declare class TrieRouter implements IRouter { node: Node; constructor(); add(method: string, path: string, handler: T): void; match(method: string, path: string): IRouterResult | null; } //# sourceMappingURL=router.d.ts.map