import type { ViewStyle, StyleProp, TextStyle } from 'react-native'; import type { IMessage } from './Models'; export interface SystemMessageProps { currentMessage?: TMessage; containerStyle?: StyleProp; wrapperStyle?: StyleProp; textStyle?: StyleProp; } declare const SystemMessage: { ({ currentMessage, containerStyle, wrapperStyle, textStyle, }: SystemMessageProps): JSX.Element | null; defaultProps: { currentMessage: { system: boolean; }; containerStyle: {}; wrapperStyle: {}; textStyle: {}; }; }; export default SystemMessage;