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