import { ChildKeyNode } from 'components/ExpressionDropdown/ExpressionDropdown'; interface TrieNode { value: string; valueTillHere: string; children: TrieNode[]; childKeys: ChildKeyNode[]; childExpressions: string[]; } export declare function formatData(expressions: string[]): TrieNode; export {};