import * as React from 'react'; type Props = { text: string; setText: (value: string) => void; onSendMessage: () => void; expand: boolean; setExpand: (value: boolean) => void; handleFileUpload: (fileList: FileList | null) => void; disabled?: boolean; }; declare const ChatTextField: React.FC; export default ChatTextField;