export interface BoundingSphere { center: Float32Array; radius: number; } /** * Compute a bounding sphere from interleaved vertex data. * Reads position from the first 3 floats of each vertex. */ export declare function computeBoundingSphere(vertices: Float32Array, stride: number): BoundingSphere; //# sourceMappingURL=bounds.d.ts.map