export class BVHQueryIntersectsSphere extends BVHQuery {
    /**
     *
     * @param {number[]|ArrayLike<number>} sphere
     * @returns {BVHQueryIntersectsRay}
     */
    static from(sphere: number[] | ArrayLike<number>): BVHQueryIntersectsRay;
    /**
     *
     * @type {number[]}
     */
    sphere: number[];
    evaluate(node: any, tree: any): boolean;
}
import { BVHQuery } from "./BVHQuery.js";
//# sourceMappingURL=BVHQueryIntersectsSphere.d.ts.map