/** * Animates a value from its previous state to the next. If no value is provided, the returning animated value is defaulted. * @param value Value to animate to. * @param invertedDefaltProgress A boolean value indicating whether or not to invert the default progress value when no value is provided. * @returns An animated value that is animated towards the provided `value` argument. */ export declare const useAnimatedProgress: (value?: number, invertedDefaltProgress?: boolean) => import("react-native-reanimated").SharedValue;