import { ReactText } from 'react'; import { TextProps } from 'react-native'; export interface ITextProps extends TextProps { /** * */ color?: string; /** * */ fontFamily?: string; /** * */ fontSize?: ReactText; /** * */ letterSpacing?: number; /** * */ lineHeight?: number; /** * */ textAlign?: string; /** * */ textTransform?: string; }