import type { ReactElement } from 'react'; import type { ToolCallState } from './use-chat-connection'; export function ToolCallList({ tools }: { tools: ToolCallState[] }): ReactElement | null { if (tools.length === 0) return null; return ( ); }