/// <reference types="react" />
import type { TextProps as RNTextProps, TextInputProps } 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;
//# sourceMappingURL=ReText.d.ts.map