import { Command } from '../command.js'; import { Object3D } from 'three'; /** * @param editor Editor * @param object THREE.Object3D * @constructor */ declare class DecombineCommand extends Command { object: Object3D; childrenList: number[]; parent: Object3D; idList: number[]; constructor(editor: any, object: any); execute(): void; undo(): void; } export { DecombineCommand };