import type { ParamAssocArray } from './node';
export type ReplacementMap = number[];
export declare class Trie {
             
    paths: Record<string, [number, ParamAssocArray]>;
    insert(path: string, isStatic: boolean): void;
    buildRegExp(): [RegExp, ReplacementMap, ReplacementMap];
}
