/** * Copies the transform from one set of objects to another * * * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class TransformCopySopParamConfig extends NodeParamsConfig { /** @param toggle on if the second input should be used */ useSecondInput: import("../utils/params/ParamsConfig").ParamTemplate; /** @param use a reference object */ reference: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class TransformCopySopNode extends TypedSopNode { params_config: TransformCopySopParamConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; cook(input_contents: CoreGroup[]): void; private _copy_from_src_objects; private _copy_from_found_node; } export {};