import React from 'react';
import { TextProps as RNTextProps, TextStyle, Animated, StyleProp } from 'react-native';
export declare type RnTextProps = RNTextProps & {
    type?: 'header' | 'title' | 'label' | 'subLabel';
    label?: string;
    color?: string;
    center?: boolean;
    uppercase?: boolean;
    animated?: boolean;
    highlightText?: string;
    highlightTextStyle?: TextStyle;
    backgroundColor?: any;
    tooltipProps?: {
        number?: number;
        content?: string;
    };
    children?: React.ReactNode;
    style?: StyleProp<TextStyle | Animated.AnimatedProps<TextStyle>>;
};
declare const _default: (props: RnTextProps) => JSX.Element;
export default _default;
