import { FileContents } from "../types.js"; import { DiffBasePropsReact } from "./types.js"; //#region src/react/MultiFileDiff.d.ts interface MultiFileDiffProps extends DiffBasePropsReact { oldFile: FileContents; newFile: FileContents; } declare function MultiFileDiff({ oldFile, newFile, options, lineAnnotations, selectedLines, className, style, prerenderedHTML, renderAnnotation, renderHeaderMetadata, renderHoverUtility }: MultiFileDiffProps): React.JSX.Element; //#endregion export { type FileContents, MultiFileDiff, MultiFileDiffProps }; //# sourceMappingURL=MultiFileDiff.d.ts.map