import { Entity } from '../entity/Entity';
import { App } from './App';
import { EntityType } from '../entity/EntityType';
/**
 * 创建实体
 * @param app 应用对象
 * @param type 实体类型
 */
export declare function create(app: App, type: EntityType | string): Entity;
