import { Point } from './point'; export declare type Sphere = [...Point, number]; export declare const Sphere: { create: typeof create; }; declare function create(center: Point, radius: number): Sphere; export {}; //# sourceMappingURL=sphere.d.ts.map