import * as THREE from 'three'; import { GlTF } from './glTF'; export type GlTFResult = { json: GlTF; scenes: THREE.Object3D[]; scene: THREE.Object3D; animations: THREE.AnimationClip[]; cameras: THREE.Camera[]; textures: THREE.Texture[]; CESIUM_RTC?: { center: THREE.Vector3; }; dispose: () => void; };