import { ObjectID } from "bson";
import { IApplicationModel } from "../model/application";
export declare class ApplicationCacheAgent {
    static create(): ApplicationCacheAgent;
    private readonly _applicationMap;
    private constructor();
    getApplication(id: ObjectID | string): Promise<IApplicationModel | null>;
}
