import React from 'react'; import { IChatComponent, IChatContent } from '@opensumi/ide-core-common'; import { ChatRequestModel } from '../chat/chat-model'; import { MsgHistoryManager } from '../model/msg-history-manager'; interface IChatReplyProps { relationId: string; request: ChatRequestModel; history: MsgHistoryManager; startTime?: number; agentId?: string; command?: string; onRegenerate?: () => void; onDidChange?: () => void; onDone?: () => void; msgId: string; } export declare const ChatReply: (props: IChatReplyProps) => React.JSX.Element; interface IChatNotifyProps { requestId: string; chunk: IChatContent | IChatComponent; } export declare const ChatNotify: (props: IChatNotifyProps) => React.JSX.Element; export {}; //# sourceMappingURL=ChatReply.d.ts.map