import PropTypes from 'prop-types'; 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): JSX.Element | null; export declare namespace Day { var propTypes: { currentMessage: PropTypes.Requireable; previousMessage: PropTypes.Requireable; nextMessage: PropTypes.Requireable; inverted: PropTypes.Requireable; containerStyle: PropTypes.Requireable; wrapperStyle: PropTypes.Requireable; textStyle: PropTypes.Requireable; dateFormat: PropTypes.Requireable; }; }