/**
 * unpacks a shape into its components
 *
 *
 */
import { CADSopNode } from './_BaseCAD';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { CoreGroup } from '../../../core/geometry/Group';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class CADUnpackSopParamsConfig extends NodeParamsConfig {
}
export declare class CADUnpackSopNode extends CADSopNode<CADUnpackSopParamsConfig> {
    paramsConfig: CADUnpackSopParamsConfig;
    static type(): SopType;
    protected initializeNode(): void;
    cook(inputCoreGroups: CoreGroup[]): void;
}
export {};
