/// import { ViewStyle, TextStyle } from 'react-native'; import PropTypes from 'prop-types'; import { IMessage } from './types'; interface SystemMessageProps { currentMessage?: TMessage; containerStyle?: ViewStyle; wrapperStyle?: ViewStyle; textStyle?: TextStyle; } export default function SystemMessage({ currentMessage, containerStyle, wrapperStyle, textStyle, }: SystemMessageProps): JSX.Element | null; export default namespace SystemMessage { var defaultProps: { currentMessage: { system: boolean; }; containerStyle: {}; wrapperStyle: {}; textStyle: {}; }; var propTypes: { currentMessage: PropTypes.Requireable; containerStyle: PropTypes.Validator> | undefined; wrapperStyle: PropTypes.Validator> | undefined; textStyle: PropTypes.Requireable; }; } export {};