import { default as React } from 'react'; import { KamanFile } from '../../api/FileExplorerAPI'; interface WelcomeInputProps { inputValue: string; setInputValue: (value: string) => void; attachments: (File | KamanFile)[]; setAttachments: React.Dispatch>; onSendMessage: () => void; onFileChange: (e: React.ChangeEvent) => void; onRemoveAttachment: (index: number) => void; fileInputRef: React.RefObject; openFileSelector: () => void; baseUrl: string; showAppsSelection?: boolean; showExpertSelector: boolean; setShowExpertSelector: (show: boolean) => void; appDetails?: any; onAudioTranscript?: (transcript: string) => void; onFaqSubmit?: (message: string) => void; token: string; expertDetails?: any; expertName?: string; expertButtonRef?: React.RefObject; } declare const WelcomeInput: React.FC; export default WelcomeInput;