import type { AnyModel } from "../model/BaseModel";
export declare class ModelPool {
    private pool;
    constructor(root: object);
    findModelByTypeAndId(modelType: string, modelId: string): AnyModel | undefined;
    findModelForSnapshot(sn: any): AnyModel | undefined;
}
