import { TypeValue } from '@davinci/reflector'; import { EntityDefinition } from './EntityDefinition'; import { EntityDefinitionJSONSchema } from './types'; /** * The EntityRegistry class stores all of the EntityDefinition objects and provides a way * to cache and retrieve the EntityDefinitionJSONSchema objects. */ export declare class EntityRegistry { private entityDefinitionMap; getEntityDefinitionJsonSchema(typeValue: TypeValue): EntityDefinitionJSONSchema; getEntityDefinitionMap(): Map; }