/** * Rename an attribute * * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class AttribRenameSopParamsConfig extends NodeParamsConfig { /** @param class of the attribute to rename (object or geometry) */ class: import("../utils/params/ParamsConfig").ParamTemplate; /** @param old attribute name */ oldName: import("../utils/params/ParamsConfig").ParamTemplate; /** @param new attribute name */ newName: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class AttribRenameSopNode extends TypedSopNode { params_config: AttribRenameSopParamsConfig; static type(): string; initializeNode(): void; cook(input_contents: CoreGroup[]): void; } export {};