/**
 * Prints the whole hierarchy into the console.
 *
 * Utility tool, primarily intended for debugging.
 *
 * WARNING: can crash the browser as hierarchies can have thousands of nodes
 * @param {BVH} bvh
 * @param {number} [node] where to start, defaults to root
 * @param {string} [prefix] Initial prefix for the node
 */
export function ebvh_print_to_console(bvh: BVH, node?: number, prefix?: string): void;
//# sourceMappingURL=ebvh_print_to_console.d.ts.map