/** * Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Primitive } from './primitive.js'; export declare const DefaultTorusProps: { radius: number; tube: number; radialSegments: number; tubularSegments: number; arc: number; }; export type TorusProps = Partial; export declare function Torus(props?: TorusProps): Primitive;