import { AnimationClip, AnimationMixer, Object3D } from 'three'; import { AnimationsT } from '../types'; export declare const loadAnimationClips: (source: Blob | string) => Promise; export declare const playAssetIdleAnimation: (root: Object3D, animations: Array) => Array | null; export declare const updateAssetAnimations: (mixers: Array | null, delta: number) => boolean; export declare const disposeAssetAnimations: (mixers: Array | null, root: Object3D) => boolean; export declare const useAnimations: (animations: AnimationsT) => Record; export declare const getAnimation: (name: string) => string;