import type { RawVector3 } from '../vec3/RawVector3'; import type { RawSphere3 } from './RawSphere3'; /** * Test if given point is contained in given sphere or not. * @param sphere A sphere * @param point A point */ export declare function sphere3ContainsPoint(sphere: RawSphere3, point: RawVector3): boolean;