import type { Hunk } from "diff";
import * as React from "react";
type Props = {
filePath: string;
structuredPatch: Hunk[];
verbose: boolean;
};
export declare function FileContentDiff({ filePath, structuredPatch, verbose }: Props): React.ReactNode;
export {};