/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Primitive } from './primitive.js'; export declare const DefaultCylinderProps: { radiusTop: number; radiusBottom: number; height: number; radialSegments: number; heightSegments: number; topCap: boolean; bottomCap: boolean; thetaStart: number; thetaLength: number; }; export type CylinderProps = Partial; export declare function Cylinder(props?: CylinderProps): Primitive;