import { EntityConstructor, EntityInterface } from './Entity.types.js';
export default class EntityWeakCache {
    private references;
    get(EntityClass: EntityConstructor, guid: string): EntityInterface | null;
    set(EntityClass: EntityConstructor, entity: EntityInterface): void;
}
