export default interface IContextIndexData {
    items: string[];
    trie: {
        [name: string]: object | undefined;
    };
}
