import * as React from 'react'; type Props = { newText: string; setNewText: (newText: string) => void; onEnterPress: () => void; }; declare const MessageUserEditorTextfield: React.FC; export default MessageUserEditorTextfield;