export interface ToolCallView { name: string; args: Record; status: "running" | "success" | "error"; result?: string; durationMs?: number; } /** * Single tool call row. Shows the call signature, then the result on the * next line (truncated). The agent's full result string still goes to * context — this is just the human-glance summary. */ export declare function ToolCallLine({ call }: { call: ToolCallView; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ToolCallLine.d.ts.map