import type { IndexedGeomInfo } from "./api.mjs"; interface CylinderOpts { height: number; radius: number; nx: number; ny: number; radiusApex: number; capSegments: number; capApex: boolean; capBase: boolean; capBaseSegments: number; phi: number; } export declare const cylinder: ({ height, radius, nx, ny, radiusApex, capSegments, capApex, capBase, capBaseSegments, phi, }?: Partial) => IndexedGeomInfo; export declare const cone: (opts?: Partial) => IndexedGeomInfo; export declare const tetrahedron: ({ radius }?: { radius?: number | undefined; }) => IndexedGeomInfo; export {};