import { Node, Scene, vec3 } from '@gltf-transform/core'; /** Computes bounding box in world space for the given {@link Node} or {@link Scene}. */ export declare function bounds(node: Node | Scene): { min: vec3; max: vec3; };