// @flow import { Component } from 'react' import type { IMessage, LeftRightStyle } from './types' import type { TextStyleProp, ViewStyleProp, } from 'react-native/Libraries/StyleSheet/StyleSheet' export type TimeProps = $ReadOnly<{| position: 'left' | 'right', currentMessage: TMessage, containerStyle?: LeftRightStyle, timeTextStyle?: LeftRightStyle, timeFormat?: string, |}> export default class Time extends Component< TimeProps, > {}