import * as React from 'react'; import { Animated, TextStyle, StyleProp } from 'react-native'; declare type Props = React.ComponentPropsWithRef & { style?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }; /** * Text component which follows styles from the theme. * * @extends Text props https://reactnative.dev/docs/text#props */ declare function AnimatedText({ style, theme, ...rest }: Props): JSX.Element; declare const _default: React.ComponentType> & { style?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }, keyof import("react-native").TextProps | keyof React.RefAttributes> & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics> & { style?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }> & typeof AnimatedText, {}>; export default _default;