import type { ModelBuilder } from '../model/ModelBuilder'; /** * Options for the {@link buildSphere} function * * @public */ export interface BuildSphereOptions { /** * The sphere radius */ radius?: number; /** * The tesselation */ tesselation?: number; } /** * Builds a sphere shape into the {@link ModelBuilder} * * @public */ export declare function buildSphere(builder: ModelBuilder, options?: BuildSphereOptions): void; //# sourceMappingURL=buildSphere.d.ts.map