import ILogger from "../queue/generated/utils/ILogger"; import IAccountDataStore, { IAccountProperties } from "./IAccountDataStore"; export default class AccountDataStore implements IAccountDataStore { private readonly logger; private status; private timer; private accounts; constructor(logger: ILogger); getAccount(name: string): IAccountProperties | undefined; init(): Promise; isInitialized(): boolean; close(): Promise; isClosed(): boolean; clean(): Promise; private refresh; private parserAccountsEnvironmentString; } //# sourceMappingURL=AccountDataStore.d.ts.map