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