import React from 'react'; import { TextInputProps, TextStyle, ViewStyle } from 'react-native'; interface Props extends TextInputProps { value: string; placeholder?: string; placeholderTextColor?: string; multiline?: boolean; onTextChange: (text: string) => void; onMarkdownChange: (markdown: string) => void; onFocusStateChange?: (status: boolean) => void; leftComponent?: React.ReactNode; rightComponent?: React.ReactNode; innerComponent?: React.ReactNode; textInputStyle: ViewStyle; textInputTextStyle: TextStyle; mentionStyle: TextStyle; suggestedUsersComponent: any; users: { id: string; name: string; avatar: string; }[]; } export declare const MentionsInput: React.ForwardRefExoticComponent>; export {};