import { type BatchSection } from "../../ui-core/rendering/batch-sections.js"; import { type ToolItem } from "../../ui-core/state/transcript-types.js"; import { type BlockContext } from "./block-context.js"; /** Sub-rows kept when the batch card is collapsed. */ export declare const BATCH_COLLAPSED_ROWS = 8; export declare function batchSectionsFor(ctx: BlockContext, item: ToolItem): BatchSection[]; export declare function buildBatchLines(ctx: BlockContext, item: ToolItem): string[];