import React from "react"; import { Text, StyleProp, ViewStyle, TextStyle, TextProps } from "react-native"; interface IProps { debug?: boolean; containerStyle?: StyleProp; rowWrapperStyle?: StyleProp; textStyle?: StyleProp; TextComponent?: typeof Text | React.FC; } declare const WrappedText: React.FC; export default WrappedText;