import React from 'react'; import './style.scss'; export interface ConversationInputProps { value: string; onChange: (value: string) => void; onSend: () => void; onStop?: () => void; isStreaming?: boolean; disabled?: boolean; placeholder?: string; maxLength?: number; showCharCount?: boolean; autoResize?: boolean; className?: string; inputClassName?: string; buttonClassName?: string; } export declare const ConversationInput: React.FC; //# sourceMappingURL=ConversationInput.d.ts.map