/// import { TextProps as RNTextProps } from 'react-native'; import Animated from 'react-native-reanimated'; interface TextProps { text: string; value: Animated.SharedValue | number; style?: Animated.AnimateProps['style']; } declare const ReText: (props: TextProps) => JSX.Element; export default ReText;