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 declare function SystemMessage({ currentMessage, containerStyle, wrapperStyle, textStyle, }: SystemMessageProps): JSX.Element | null; export declare namespace SystemMessage { var propTypes: { currentMessage: PropTypes.Requireable; containerStyle: PropTypes.Requireable; wrapperStyle: PropTypes.Requireable; textStyle: PropTypes.Requireable; }; }