/** * Promotes an attribute from object to geometry or vice-versa. * * @remarks * The attribute can also be promoted with different modes, such as only the min, max or first found. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class AttribPromoteSopParamsConfig extends NodeParamsConfig { /** @param class the attribute is from (object or geometry) */ classFrom: import("../utils/params/ParamsConfig").ParamTemplate; /** @param class the attribute should be promoted to (object or geometry) */ classTo: import("../utils/params/ParamsConfig").ParamTemplate; /** @param mode used to promote the attribute (min, max or first_found) */ mode: import("../utils/params/ParamsConfig").ParamTemplate; /** @param name of the attribute to promote */ name: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class AttribPromoteSopNode extends TypedSopNode { params_config: AttribPromoteSopParamsConfig; static type(): string; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): void; } export {};