import type { Result, Router } from '../../router'; import { Node } from './node'; export declare class TrieRouter implements Router { node: Node; constructor(); add(method: string, path: string, handler: T): void; match(method: string, path: string): Result | null; }