export type ChatInputProps = { onSendMessage: (message: string) => void; onClearHistoryClick?: () => void; disabled?: boolean; recentPrompts: string[]; suggestions: string[]; isLoading: boolean; recommendationsError: boolean; onChange?: (text: string) => void; }; export default function ChatInput({ onSendMessage, onClearHistoryClick, disabled, recentPrompts, suggestions, isLoading, recommendationsError, onChange, }: ChatInputProps): import("react/jsx-runtime").JSX.Element;