import { type DiffFile, type DiffLine, type File } from '@git-diff-view/core'; interface Props { rawLine: string; plainLine?: File['plainFile'][number]; syntaxLine?: File['syntaxFile'][number]; diffLine?: DiffLine; diffFile: DiffFile; enableWrap: boolean; enableHighlight: boolean; } declare const DiffContent: import("svelte").Component; type DiffContent = ReturnType; export default DiffContent;