/** * Creates a box. * * @remarks * If the node has no input, you can control the radius and center of the box. If the node has an input, it will create a box that encompasses the input geometry. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class BoxSopParamsConfig extends NodeParamsConfig { /** @param size of the box */ size: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of segments on each axis */ divisions: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the geometry */ center: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class BoxSopNode extends TypedSopNode { params_config: BoxSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): void; } export {};