import React from 'react'; interface ChatInputProps { onSend: (message: string) => void; placeholder?: string; disabled?: boolean; sendButtonText?: string; } export declare const ChatInput: React.FC; export {};