import type { StyleProp, ViewStyle, TextStyle } from 'react-native'; import type { IMessage } from './Models'; export interface DayProps { currentMessage?: TMessage; previousMessage?: TMessage; containerStyle?: StyleProp; wrapperStyle?: StyleProp; textStyle?: StyleProp; dateFormat?: string; } declare const Day: { ({ dateFormat, currentMessage, previousMessage, containerStyle, wrapperStyle, textStyle, }: DayProps): JSX.Element | null; defaultProps: { currentMessage: { createdAt: null; }; previousMessage: {}; containerStyle: {}; wrapperStyle: {}; textStyle: {}; dateFormat: string; }; }; export default Day;