import { default as React } from 'react'; interface ChatInputProps { value: string; onChange: (value: string) => void; onSend: () => void; onStop?: () => void; onContinue?: () => void; isStreaming?: boolean; showContinue?: boolean; disabled?: boolean; placeholder?: string; } declare const ChatInput: React.NamedExoticComponent; export default ChatInput;