import { TAGS } from './baseEntities/constants';
import { EntityConstructor } from './types';
export declare function registerEntityClass(realm: string, tagName: TAGS, entityClass: EntityConstructor): void;
export declare function getEntityClassByTag(realm: string, tagName: TAGS): EntityConstructor;
