import { MarketStatus } from '../types'; export declare abstract class BaseDummyIDManager { protected data: MarketStatus | null; protected dummyId: number | null; protected dateStamp: Date | null; protected marketStatusFunction: (() => Promise) | (() => MarketStatus) | null; constructor(marketStatusFunction?: (() => Promise) | (() => MarketStatus)); setMarketStatusFunction(func: (() => Promise) | (() => MarketStatus) | null): void; protected convertToDateTime(dateTimeStr: string): Date; toString(): string; } export declare class DummyIDManager extends BaseDummyIDManager { private updateStarted; private updatePromise; populateData(force?: boolean): Promise; private performUpdate; getDummyID(): Promise; } //# sourceMappingURL=DummyIDManager.d.ts.map