import { Ref } from "vue"; /** * @description Manages the life cycle of animations that are executed according to changes in char values * @param char This is the target value, and the animation runs when the value changes. * @param charSet A set of target values, rolled according to the order of the list * @param duration animation duration */ export default function useAnimationManager(char: Ref, defaultChar: Ref, charSet: Ref, duration: Ref): { isReady: Ref; isEnd: Ref; targetIdx: import("vue").ComputedRef; prevTargetIdx: Ref; };