import { ContentType } from './content'; export interface ToolMessage { name: string; title: string; arguments: string; response?: string; error?: boolean; content?: ContentType; } interface Props { tool: ToolMessage; loading?: boolean; } export default function Tool({ tool, loading }: Props): import("react/jsx-runtime").JSX.Element; export {};