import { ConversationUiCtrl, ConvoEditorMode } from "@convo-lang/convo-lang"; import { ConversationInputChange } from "./convo-lang-react.js"; export interface MessagesSourceViewProps { ctrl?: ConversationUiCtrl; mode?: ConvoEditorMode; autoScrollBehavior?: ScrollBehavior; autoHeight?: boolean; onInputChange?: (change: ConversationInputChange) => void; } /** * @acIgnore */ export declare function MessagesSourceView({ ctrl: _ctrl, mode, autoScrollBehavior, autoHeight, onInputChange }: MessagesSourceViewProps): import("react/jsx-runtime").JSX.Element;