/**
 * Creates CSG Polyhedrons.
 *
 *
 */
import { CSGSopNode } from './_BaseCSG';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { CoreGroup } from '../../../core/geometry/Group';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class CSGPolyhedronSopParamsConfig extends NodeParamsConfig {
    /** @param points */
    points: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.STRING>;
    /** @param paths */
    faces: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.STRING>;
    /** @param outward */
    outward: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
}
export declare class CSGPolyhedronSopNode extends CSGSopNode<CSGPolyhedronSopParamsConfig> {
    paramsConfig: CSGPolyhedronSopParamsConfig;
    static type(): SopType;
    cook(inputCoreGroups: CoreGroup[]): void;
}
export {};
