import { type Document, type GLTF } from '@gltf-transform/core'; /** Inspects the contents of a glTF file and returns a JSON report. */ export declare function inspect(doc: Document): InspectReport; export interface InspectReport { scenes: InspectPropertyReport; meshes: InspectPropertyReport; materials: InspectPropertyReport; textures: InspectPropertyReport; animations: InspectPropertyReport; } export interface InspectPropertyReport { properties: T[]; errors?: string[]; warnings?: string[]; } export interface InspectSceneReport { name: string; rootName: string; bboxMin: number[]; bboxMax: number[]; renderVertexCount: number; uploadVertexCount: number; uploadNaiveVertexCount: number; } export interface InspectMeshReport { name: string; meshPrimitives: number; mode: string[]; vertices: number; glPrimitives: number; indices: string[]; attributes: string[]; instances: number; size: number; } export interface InspectMaterialReport { name: string; instances: number; textures: string[]; alphaMode: GLTF.MaterialAlphaMode; doubleSided: boolean; } export interface InspectTextureReport { name: string; uri: string; slots: string[]; instances: number; mimeType: string; resolution: string; compression: string; size: number; gpuSize: number | null; } export interface InspectAnimationReport { name: string; channels: number; samplers: number; keyframes: number; duration: number; size: number; }