/** * Creates a tetrahedron * * * */ import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class TetrahedronSopParamsConfig extends NodeParamsConfig { /** @param radius of the tetrahedron */ radius: import("../utils/params/ParamsConfig").ParamTemplate; /** @param resolution of the tetrahedron */ detail: import("../utils/params/ParamsConfig").ParamTemplate; /** @param sets to create only points */ pointsOnly: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the tetrahedron */ center: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class TetrahedronSopNode extends TypedSopNode { params_config: TetrahedronSopParamsConfig; static type(): string; cook(): void; } export {};