15 lines
546 B
TypeScript
15 lines
546 B
TypeScript
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
import { AssistantMessage, Message } from "@ag-ui/core";
|
|
|
|
//#region src/components/chat/CopilotChatToolCallsView.d.ts
|
|
type CopilotChatToolCallsViewProps = {
|
|
message: AssistantMessage;
|
|
messages?: Message[];
|
|
};
|
|
declare function CopilotChatToolCallsView({
|
|
message,
|
|
messages
|
|
}: CopilotChatToolCallsViewProps): react_jsx_runtime0.JSX.Element | null;
|
|
//#endregion
|
|
export { CopilotChatToolCallsView, CopilotChatToolCallsViewProps };
|
|
//# sourceMappingURL=CopilotChatToolCallsView.d.cts.map
|