import * as React from "react";
import { type Hunk } from "diff";
type Props = {
    patch: Hunk;
    dim: boolean;
    width: number;
};
export declare function StructuredDiff({ patch, dim, width }: Props): React.ReactNode;
export {};
