/** * FilesChangedSummary — aggregates all edit/write tool calls in a turn and * renders a compact "+N -M path" summary row per file. Click a row to expand * to that file's diff. Derived purely from ContentPart structuredMeta. */ import type { ContentPart } from "../sse-event-processor.js"; interface FilesChangedSummaryProps { /** All content parts in the current assistant turn. */ parts: ContentPart[]; } export declare const FilesChangedSummary: import("react").MemoExoticComponent<({ parts, }: FilesChangedSummaryProps) => import("react").JSX.Element | null>; export {}; //# sourceMappingURL=FilesChangedSummary.d.ts.map