/** * Snaps points onto one another. * * @remarks * Based on a distance threshold. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class FuseSopParamsConfig extends NodeParamsConfig { /** @param distance threshold */ dist: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class FuseSopNode extends TypedSopNode { params_config: FuseSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; cook(input_contents: CoreGroup[]): void; private _fuse_core_object; } export {};