/** * Just like the Box, with rounded bevels. * */ 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 divisions count */ divisions: import("../utils/params/ParamsConfig").ParamTemplate; /** @param bevel size */ bevel: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the box */ center: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class RoundedBoxSopNode extends TypedSopNode { params_config: BoxSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): void; } export {};