import { TrieNode } from '../../TrieNode'; import { CompoundWordsMethod, WalkerIterator } from './walkerTypes'; /** * Walks the Trie and yields a value at each node. * next(goDeeper: boolean): */ export declare function walker(root: TrieNode, compoundingMethod?: CompoundWordsMethod): WalkerIterator; //# sourceMappingURL=walker.d.ts.map