/** * Splits a geometry into multiple objects * * @remarks * This is useful to isolate parts of a geometry that matches a specific attribute. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class DeleteSopParamsConfig extends NodeParamsConfig { /** @param type of attribute to use */ attribType: import("../utils/params/ParamsConfig").ParamTemplate; /** @param name of the attribute */ attribName: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class SplitSopNode extends TypedSopNode { params_config: DeleteSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; private _new_objects; cook(input_contents: CoreGroup[]): Promise; _split_core_group(core_group: CoreGroup): Promise; private _split_core_object; } export {};