/*! * BVHEcctrl * https://github.com/pmndrs/BVHEcctrl * (c) 2025 @ErdongChen-Andrew * Released under the MIT License. */ import type { CharacterAnimationStatus } from ".."; export interface AnimationStoreState { animationStatus: CharacterAnimationStatus; setAnimationStatus: (status: CharacterAnimationStatus) => void; } export declare const useAnimationStore: import("zustand").UseBoundStore>;