import React, { ReactElement } from 'react';
import { StyleProp, TextProps as TextComponentProps, TextStyle } from 'react-native';
export interface TextProps extends TextComponentProps {
    children?: ReactElement | string;
    style?: StyleProp<TextStyle>;
}
declare const Text: ({ children, style, ...props }: TextProps) => React.JSX.Element | null;
export default Text;
