///
import type { TextInputProps, TextProps as RNTextProps } from "react-native";
import Animated from "react-native-reanimated";
interface TextProps extends Omit {
text: Animated.SharedValue;
style?: Animated.AnimateProps["style"];
}
declare const ReText: (props: TextProps) => JSX.Element;
export default ReText;