import { AnimationAction } from 'three'; interface AnimationCollection { action: AnimationAction; } interface ActiveAnimation { action: AnimationAction; resolve: () => void; reject: (code: 1 | 2 | 3) => void; } interface Clip { name: string; startFrame: number; endFrame: number; } export { AnimationCollection, ActiveAnimation, Clip };