import { IQueue, IWorker } from "../models"; export interface EntitySearch { time: number; } export declare class InsightsEntityCache { private static entities; private static searches; static getWorker(sid: string): IWorker; static getQueue(sid: string): IQueue; static refreshInfoForEntities(sids: Array): Promise; static updateCache(entity: IWorker | IQueue): void; }