import { ConversationUiCtrl } from "@convo-lang/convo-lang"; import { ConversationInputChange } from "./convo-lang-react.js"; export interface ConversationInputProps { ctrl?: ConversationUiCtrl; className?: string; inputName?: string; inputType?: string; inputClassName?: string; placeholder?: string; submitTrigger?: any; min?: boolean; children?: any; noSubmitButton?: boolean; unstyled?: boolean; beforeInput?: any; afterInput?: any; imageUrl?: string; imageAlt?: string; imageClassName?: string; imageSize?: string | number; imageAr?: string | number; autoFocus?: boolean | number; autoFocusDelayMs?: number; submitButtonClassName?: string; onInputChange?: (change: ConversationInputChange) => void; } export declare function ConversationInput({ ctrl: _ctrl, inputName, inputType, className, inputClassName, placeholder, submitTrigger, min, children, noSubmitButton, unstyled, beforeInput, afterInput, imageUrl, imageAlt, imageClassName, imageSize, imageAr, autoFocus, autoFocusDelayMs, submitButtonClassName, onInputChange, }: ConversationInputProps): import("react/jsx-runtime").JSX.Element;