interface ChatInputProps { sendChatMessage: (message: string) => Promise; isSendingChat: boolean; autoFocus?: boolean; } export declare function ChatInput({ sendChatMessage, isSendingChat, autoFocus }: ChatInputProps): import("react/jsx-runtime").JSX.Element; export {};