import { TextStyle } from 'react-native'; type DefaultPropsTypes = { limit: number; }; type Props = { text: string; textStyle?: TextStyle; } & DefaultPropsTypes; declare const ReadMoreText: { ({ text, limit, textStyle }: Props): JSX.Element; defaultProps: DefaultPropsTypes; }; export default ReadMoreText;