/**
 * Accept any node
 */
export class BVHQueryAny extends BVHQuery {
    /**
     * @readonly
     * @type {BVHQueryAny}
     */
    static readonly INSTANCE: BVHQueryAny;
    evaluate(node: any, tree: any): boolean;
}
import { BVHQuery } from "./BVHQuery.js";
//# sourceMappingURL=BVHQueryAny.d.ts.map