import { type ReactElement } from 'react'; /** * Renders one unified diff with added, removed and context lines told apart. * * @param options - Diff text and whether it holds only the beginning of the real diff. * @returns Readable diff block. * * @private function of ChatToolCallModal */ export declare function renderAgentProjectDiff(options: { readonly diff: string; readonly isDiffTruncated: boolean; }): ReactElement;