import { ReactNode } from 'react'; type ChatInputProps = { className?: string; onSend: (value: string) => void; }; declare const ChatInput: (props: ChatInputProps) => ReactNode; export default ChatInput;