import { ScadNumber } from '../../types/ScadNumber'; import { ScadRoundingVariables } from '../../types/ScadRoundingVariables'; import { IShape } from '../internals'; export declare type Sphere = IShape<'sphere', { r: ScadNumber; } & ScadRoundingVariables>; export declare function sphere(radius?: ScadNumber, params?: ScadRoundingVariables): Sphere & import("../..").ScadMethods; export declare namespace sphere { var defaultRadius: ScadNumber; var defaultParams: ScadRoundingVariables; }