import * as React from 'react'; import { StyleProp, ViewStyle, TextStyle, TextProps } from 'react-native'; import { IMessage } from './Models'; export interface DayProps { currentMessage: TMessage; nextMessage?: TMessage; previousMessage?: TMessage; containerStyle?: StyleProp; wrapperStyle?: StyleProp; textStyle?: StyleProp; textProps?: TextProps; dateFormat?: string; inverted?: boolean; } export declare function Day({ dateFormat, currentMessage, previousMessage, containerStyle, wrapperStyle, textStyle, }: DayProps): React.JSX.Element | null;