import React from 'react'; import { ToolCall } from '.'; interface ToolImageProps { tool: ToolCall; prefixCls: string; hashId: string; } export declare const ToolImage: React.NamedExoticComponent; interface ToolHeaderRightProps { tool: ToolCall; prefixCls: string; hashId: string; light: boolean; } export declare const ToolHeaderRight: React.NamedExoticComponent; interface ToolTimeProps { tool: ToolCall; prefixCls: string; hashId: string; } export declare const ToolTime: React.NamedExoticComponent; interface ToolExpandProps { showContent: boolean; expanded: boolean; prefixCls: string; hashId: string; onExpandClick: (e: React.MouseEvent) => void; } export declare const ToolExpand: React.NamedExoticComponent; interface ToolContentProps { tool: ToolCall; prefixCls: string; hashId: string; light: boolean; showContent: boolean; expanded: boolean; } export declare const ToolContent: React.NamedExoticComponent; export {};