export interface IToolCallProps { /** * @description 标题 * @descriptionEn Title * @default 'Call Tool' */ title?: string; /** * @description 副标题 * @descriptionEn Subtitle * @default '' */ subTitle?: string; /** * @description 工具调用入参 * @descriptionEn Tool Call Input * @default '' */ input: string | Record; /** * @description 工具调用输出 * @descriptionEn Tool Call Output * @default '' */ output: string | Record; /** * @description 默认展开 * @descriptionEn Default Open */ defaultOpen?: boolean; /** * @description 是否正在生成 * @descriptionEn Whether is generating * @default false */ loading?: boolean; outputBlock?: { language?: 'json' | 'text'; }; inputBlock?: { language?: 'json' | 'text'; }; } export default function (props: IToolCallProps): import("react/jsx-runtime").JSX.Element;