// @flow import * as React from 'react' import type { IMessage, Reply } from './types' import type { ViewStyleProp } from 'react-native/Libraries/StyleSheet/StyleSheet' export type QuickRepliesProps = $ReadOnly<{| nextMessage?: IMessage, currentMessage?: IMessage, color?: string, sendText?: string, quickReplyStyle?: ViewStyleProp, onQuickReply: (Array) => void, renderQuickReplySend?: () => React.Node, |}> export type QuickRepliesState = {| replies: Array, |} export default class QuickReplies extends React.Component< QuickRepliesProps, QuickRepliesState, > {}