// @flow import { TextInput } from 'react-native' import * as React from 'react' type TextInputProps = $Shape> export type ComposerProps = $ReadOnly<{| composerHeight?: number, text?: string, placeholder?: string, placeholderTextColor?: string, textInputProps?: TextInputProps, textInputStyle?: $PropertyType, textInputAutoFocus?: boolean, keyboardAppearance?: $PropertyType, multiline?: boolean, onTextChanged?: string => void, onInputSizeChanged?: ({| width: number, height: number, |}) => void, |}> export default class Composer extends React.Component {}