import { Object3D } from 'three'; import { Command } from '../command.js'; import { Editor } from '../editor.js'; /** * @param editor Editor * @param object THREE.Object3D * @param newUuid string * @constructor */ declare class SetUuidCommand extends Command { object: Object3D; oldUuid?: string; newUuid: string; constructor(editor: Editor, object: Object3D, newUuid: string); execute(): void; undo(): void; } export { SetUuidCommand };