import { Material, Object3D } from 'three'; import { Command } from '../command.js'; import { Editor } from '../editor.js'; /** * @param editor Editor * @param object THREE.Object3D * @param newMaterial THREE.Material * @constructor */ declare class SetMaterialCommand extends Command { private object; materialSlot: number; oldMaterial: Material; newMaterial: Material; constructor(editor: Editor, object: Object3D, newMaterial: Material, materialSlot: number); execute(): void; undo(): void; } export { SetMaterialCommand };