/** * EditCell — renders an edit tool call as a syntax-highlighted unified diff. * * The diff is computed client-side from oldText / newText stored in the * structured metadata. The HighlightedCodeBlock from AssistantChat is not * accessible here, so we do a lightweight line-diff + per-line class approach * instead (no dep on shiki required for the diff view itself). * * Collapsed by default beyond MAX_COLLAPSED_LINES; expand button shows all. */ export interface EditCellMeta { toolKind: "edit"; filePath: string; oldText?: string; newText?: string; truncated?: boolean; } interface EditCellProps { meta: EditCellMeta; isRunning: boolean; } export declare function EditCell({ meta, isRunning }: EditCellProps): import("react").JSX.Element; export {}; //# sourceMappingURL=EditCell.d.ts.map