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