import { ObjectID } from "bson";
import { IAccountModel } from "../model/import";
export declare class AccountCacheAgent {
static create(): AccountCacheAgent;
private readonly _accountMap;
private constructor();
getAccount(id: ObjectID | string): Promise<IAccountModel | null>;
}