import { Editor } from 'grapesjs'; import { AiChatOptions } from '../types'; import { AiChatPanelPropsSchema } from '../typesSchema'; export interface AiChatPanelProps extends Omit { editor: Editor; pluginOptions: AiChatOptions; } /** * Uses AI SDK v6 patterns with DefaultChatTransport and sendMessage. * Composed of AiChatHeader, AiChatMessages, and AiChatInput subcomponents. */ export declare function AiChatPanel({ editor, pluginOptions, style, className }: AiChatPanelProps): import("react/jsx-runtime").JSX.Element; export default AiChatPanel;