import { Component } from 'react'; import { ViewStyle, StyleProp, TextStyle } from 'react-native'; import PropTypes from 'prop-types'; import { IMessage } from './Models'; export interface SystemMessageProps { currentMessage?: TMessage; containerStyle?: StyleProp; wrapperStyle?: StyleProp; textStyle?: StyleProp; } export default class SystemMessage extends Component> { static defaultProps: { currentMessage: { system: boolean; }; containerStyle: {}; wrapperStyle: {}; textStyle: {}; }; static propTypes: { currentMessage: PropTypes.Requireable; containerStyle: PropTypes.Requireable; wrapperStyle: PropTypes.Requireable; textStyle: PropTypes.Requireable; }; render(): JSX.Element | null; }