import type { ToolCallEntry } from '../types.js'; /** * Bordered tool-execution block: shared header, then the output buffer (or an * inline diff for `write_file`). Collapsed by default (truncated output + hint); * `expanded` shows the full output. Ctrl+O (handled in app.tsx) toggles * expand-all and bumps the `` key so this re-renders. */ export declare function ToolCallBlock({ entry, expanded }: { entry: ToolCallEntry; expanded: boolean; }): import("react").JSX.Element;