export default class LookupCache {
    items?: object[];
    promise?: Promise<object[]> | undefined;
}
