/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import type { FileChange } from "../../../tools/file-diff.js"; export declare function DiffActionButton(props: { label: string; theme: Theme; onClick: () => void; }): ReactNode; export declare function FileDiffBody(props: { changes: readonly FileChange[]; theme: Theme; diffExpanded: boolean; onOpen: (change: FileChange) => void; multiFilePreview?: boolean; contentWidth?: number | undefined; }): ReactNode;