import { Animated } from 'react-native'; /** * Animates the bar width towards `value` (0..100) with `Animated.timing`. * `percent` mirrors the animated value as an integer, only when requested, * so the component re-renders at most 100 times per transition. */ export declare const useProgressBar: (value: number, trackPercent?: boolean) => { percent: number; progress: Animated.Value; width: Animated.Interpolation<"0%" | "100%">; }; //# sourceMappingURL=useProgressBar.d.ts.map