import React from 'react'; import { TextStyle } from 'react-native'; export declare type TextProps = { color?: string; size?: number; children?: React.ReactText | React.ReactText[]; style?: TextStyle | TextStyle[]; }; declare const TextCom: React.FC; export default TextCom;