import { Command } from '../command.js'; import { Editor } from '../editor.js'; import { Scene } from 'three'; /** * @param editor Editor * @param scene containing children to import * @constructor */ declare class SetSceneCommand extends Command { cmdArray: Command[]; constructor(editor: Editor, scene: Scene); execute(): void; undo(): void; } export { SetSceneCommand };