/** * Map a nested Subagent's own activity onto the parent Subagent card. * * Child tool rows stay off the parent accordion. Thinking may arrive as * `step.reflects` (callDepth>0) or as `kind: 'reflect'` (parent-style). * Either way the parent card needs a live inner line instead of “Thinking…”. */ import type { ToolActivityStep } from './types.js'; export type SubagentLastTool = NonNullable; export declare function isChildInnerToolStep(step: Pick): boolean; export declare function reflectsFromChildStep(step: Pick): ToolActivityStep['reflects'] | undefined; export declare function lastToolFromChildStep(step: Pick): SubagentLastTool | undefined; //# sourceMappingURL=subagent-inner-activity.d.ts.map