import { type Hunk } from "diff";
export declare function getPatch({ filePath, fileContents, oldStr, newStr, }: {
    filePath: string;
    fileContents: string;
    oldStr: string;
    newStr: string;
}): Hunk[];
