import { DiffFileInput, FileContents } from "../types.js";

//#region src/utils/getDiffFileInput.d.ts
interface GetDiffFileInputProps {
  oldFile?: FileContents | null;
  newFile?: FileContents | null;
}
declare function getDiffFileInput({
  oldFile,
  newFile
}: GetDiffFileInputProps, context: string): DiffFileInput | undefined;
//#endregion
export { getDiffFileInput };
//# sourceMappingURL=getDiffFileInput.d.ts.map