import React from 'react';
import { TextProps as RNTextProps } from 'react-native';
export interface BaseTextProps extends RNTextProps {
    color?: string;
}
declare const Text: {
    (props: BaseTextProps): React.JSX.Element;
    displayName: string;
};
export default Text;
