import PropTypes from 'prop-types'; import { ViewStyle, TextStyle } from 'react-native'; import { LeftRightStyle, IMessage } from './Models'; export interface TimeProps { position?: 'left' | 'right'; currentMessage?: TMessage; containerStyle?: LeftRightStyle; timeTextStyle?: LeftRightStyle; timeFormat?: string; } export declare function Time({ position, containerStyle, currentMessage, timeFormat, timeTextStyle, }: TimeProps): JSX.Element | null; export declare namespace Time { var propTypes: { position: PropTypes.Requireable; currentMessage: PropTypes.Requireable; containerStyle: PropTypes.Requireable; right: PropTypes.Requireable; }>>; timeFormat: PropTypes.Requireable; timeTextStyle: PropTypes.Requireable; right: PropTypes.Requireable; }>>; }; }