import { WithSlots } from "../../lib/slots.mjs"; import { CopilotChatAssistantMessage } from "./CopilotChatAssistantMessage.mjs"; import { CopilotChatUserMessage } from "./CopilotChatUserMessage.mjs"; import { CopilotChatReasoningMessage } from "./CopilotChatReasoningMessage.mjs"; import React from "react"; import * as react_jsx_runtime0 from "react/jsx-runtime"; import { Message } from "@ag-ui/core"; //#region src/components/chat/CopilotChatMessageView.d.ts type CopilotChatMessageViewProps = Omit>, "children"> & { children?: (props: { isRunning: boolean; messages: Message[]; messageElements: React.ReactElement[]; interruptElement: React.ReactElement | null; }) => React.ReactElement; }; declare function CopilotChatMessageView({ messages, assistantMessage, userMessage, reasoningMessage, cursor, isRunning, children, className, ...props }: CopilotChatMessageViewProps): react_jsx_runtime0.JSX.Element; declare namespace CopilotChatMessageView { var Cursor: ({ className, ...props }: React.HTMLAttributes) => react_jsx_runtime0.JSX.Element; } //#endregion export { CopilotChatMessageView, CopilotChatMessageViewProps }; //# sourceMappingURL=CopilotChatMessageView.d.mts.map