export declare class ObjectRepository { readonly entityMap: Map; constructor(entities?: Record); findById(id: string): T | undefined; findAll(): T[]; upsertById(id: string, entity: T): Map; deleteById(id: string): boolean; count(): number; toJSON(): T[]; }