/// import PropTypes from 'prop-types'; import { ViewStyle, TextStyle } from 'react-native'; import { IMessage } from './types'; interface DayProps { currentMessage?: TMessage; nextMessage?: TMessage; previousMessage?: TMessage; containerStyle?: ViewStyle; wrapperStyle?: ViewStyle; textStyle?: TextStyle; dateFormat?: string; inverted?: boolean; } export default function Day({ dateFormat, currentMessage, previousMessage, nextMessage, containerStyle, wrapperStyle, textStyle, inverted, }: DayProps, context: any): JSX.Element | null; export default namespace Day { var contextTypes: { getLocale: PropTypes.Requireable<(...args: any[]) => any>; }; var defaultProps: { currentMessage: { createdAt: null; }; previousMessage: {}; nextMessage: {}; containerStyle: {}; wrapperStyle: {}; textStyle: {}; dateFormat: string; }; var propTypes: { currentMessage: PropTypes.Requireable; previousMessage: PropTypes.Requireable; nextMessage: PropTypes.Requireable; inverted: PropTypes.Requireable; containerStyle: PropTypes.Validator> | undefined; wrapperStyle: PropTypes.Validator> | undefined; textStyle: PropTypes.Requireable; dateFormat: PropTypes.Requireable; }; } export {};