/** * Extract animation data from a glTF document. * Reads animation channels and samplers into ModelAnimation format. */ import type { GltfDocument } from './gltf-parser.js'; import type { ModelAnimation } from './types.js'; /** * Extract all animations from the glTF document. */ export declare function extractAnimations(doc: GltfDocument): ModelAnimation[]; //# sourceMappingURL=gltf-animation.d.ts.map