import type { PartialWithUndefined } from './types'; export declare const FLAG_WORD = 1; export declare class ChildMap extends Map { } export interface TrieNode { f?: number | undefined; c?: ChildMap | undefined; } export interface TrieOptions { compoundCharacter: string; stripCaseAndAccentsPrefix: string; forbiddenWordPrefix: string; } export type PartialTrieOptions = PartialWithUndefined | undefined; export interface TrieRoot extends TrieOptions { c: ChildMap; } //# sourceMappingURL=TrieNode.d.ts.map