export class GSplatOctreeResource {
    /**
     * @param {string} assetFileUrl - The file URL of the container asset.
     * @param {object} data - Parsed JSON data.
     */
    constructor(assetFileUrl: string, data: object);
    /** @type {BoundingBox} */
    aabb: BoundingBox;
    /** @type {GSplatOctree} */
    octree: GSplatOctree;
}
import { BoundingBox } from '../../core/shape/bounding-box.js';
import { GSplatOctree } from './gsplat-octree.js';
