import { Entity } from './Entity';
import { App } from '../core/App';
import { Thing } from './Thing';
import { Group } from './Group';
/**
 * 摆件
 */
export type Placement = Thing | Group;
/**
 * 判断对象是否为摆件
 * @param obj 对象
 */
export declare function isPlacement(obj: Entity): boolean;
/**
 * 创建摆件对象
 * @param app 应用
 * @param parent 父亲
 * @param json JSON对象
 */
export declare function createPlacement(app: App, parent: Entity, json: any): any;
