import { ReactNode } from 'react'; import { TextProps as TextRNProps } from 'react-native'; export interface TextProps extends TextRNProps { children: ReactNode; } export default function Text({ style, children, ...props }: TextProps): JSX.Element;