export interface WorkerInstance { name: string; installIds: string[]; updatedMillisecond: number; } export type WorkerProperties = Pick; export declare abstract class WorkerStoreBase { abstract getWorkerInstance(instanceName: string): Promise; abstract getAllWorkerInstances(): Promise<{ [instanceName: string]: WorkerInstance; }>; abstract deleteWorkerInstance(instanceName: string): Promise; }