import { Object3D, Vector3 } from 'three'; import { Command } from '../command.js'; import { Editor } from '../editor.js'; /** * @param editor Editor * @param object THREE.Object3D * @param newScale THREE.Vector3 * @param optionalOldScale THREE.Vector3 * @constructor */ declare class SetScaleCommand extends Command { object: Object3D; oldScale?: Vector3; newScale?: Vector3; constructor(editor: Editor, object: Object3D, newScale?: Vector3, optionalOldScale?: Vector3); execute(): void; undo(): void; update(command: SetScaleCommand): void; } export { SetScaleCommand };