/** * useAnimatedValue Hook * * Smoothly interpolates between target values with easing. * Used for progress bar animations and smooth value transitions. * * @since v2.7.28 - New spring-animated value hook */ export type EasingFunction = 'linear' | 'ease-out' | 'ease-in-out' | 'spring'; export interface UseAnimatedValueOptions { target: number; speed?: number; easing?: EasingFunction; enabled?: boolean; } export declare function applyEasing(t: number, easing: EasingFunction): number; export declare function useAnimatedValue({ target, speed, easing, enabled }: UseAnimatedValueOptions): number; //# sourceMappingURL=useAnimatedValue.d.ts.map