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