import type { RoutePattern } from '../route-pattern.ts'; import type { Match } from './types.ts'; export declare class Trie { #private; readonly ignoreCase: boolean; constructor(options?: { ignoreCase?: boolean; }); insert(pattern: RoutePattern, data: data): void; search(url: URL): Array>; } //# sourceMappingURL=trie.d.ts.map