/** * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Primitive } from './primitive.js'; export declare const DefaultPolyhedronProps: { radius: number; detail: number; }; export type PolyhedronProps = Partial; export declare function Polyhedron(_vertices: ArrayLike, _indices: ArrayLike, props?: PolyhedronProps): Primitive;