import { Change, DiffFile } from 'repo'; interface DiffViewerProps { file: DiffFile; loadChanges?: (filename: string) => Promise; type?: 'unified' | 'split'; className?: string; } export default function DiffViewer({ loadChanges, file, type, className }: DiffViewerProps): import("react/jsx-runtime").JSX.Element; export {};