export default EditorEntity;
declare class EditorEntity {
    /**
     * Marker component to distinguish editor-owned entities
     * @constructor
     */
    constructor({ referenceEntity }?: {
        referenceEntity?: number;
    });
    referenceEntity: number;
}
declare namespace EditorEntity {
    let typeName: string;
    let serializable: boolean;
}
//# sourceMappingURL=EditorEntity.d.ts.map