import { Component } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface TextWithIconProps { contents: any; containerStyle?: StyleProp; } export default class TextWithIconBlock extends Component { render(): JSX.Element; }