// @flow import { Image, TextInput } from 'react-native' import type { IMessage } from './types' import * as React from 'react' import type { ViewStyleProp, ImageStyleProp, } from 'react-native/Libraries/StyleSheet/StyleSheet' export type MessageImageProps = $ReadOnly<{| currentMessage?: TMessage, containerStyle?: ViewStyleProp, imageStyle?: ImageStyleProp, imageProps?: $Shape>, lightboxProps?: Object, |}> export default class MessageImage< TMessage: IMessage = IMessage, > extends React.Component> {}