/** * Creates a tube. * * */ import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class TubeSopParamsConfig extends NodeParamsConfig { /** @param tube radius */ radius: import("../utils/params/ParamsConfig").ParamTemplate; /** @param tube height */ height: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of segments in the radial direction */ segmentsRadial: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of segments in the height direction */ segmentsHeight: import("../utils/params/ParamsConfig").ParamTemplate; /** @param adds caps */ cap: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the tube */ center: import("../utils/params/ParamsConfig").ParamTemplate; /** @param direction of the tube */ direction: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class TubeSopNode extends TypedSopNode { params_config: TubeSopParamsConfig; static type(): string; private _core_transform; cook(): void; } export {};