import type { TimerAnimationState } from "./types"; export declare const useTimerAnimations: () => { animationState: TimerAnimationState; triggerPauseAnimation: () => void; triggerErrorAnimation: () => void; clearErrorAnimation: () => void; triggerFadeTransition: () => void; setInitialAnimationState: () => void; cleanup: () => void; };