import type { DiffLine, DiffLineKind, DiffStats } from "./document-diff.js"; /** Jump to the first native-diff highlight of a given kind in split panes. */ export declare function jumpToNativeDiffKind(leftPane: HTMLElement, rightPane: HTMLElement, kind: Exclude): void; export declare function attachDiffToolbarNavigation(toolbar: HTMLElement, stats: DiffStats, onJump: (kind: Exclude) => void): void; export declare function markNativeDiffRow(el: HTMLElement, rowIndex: number, kind: DiffLine["kind"]): void; /** First sheet name from spreadsheet compare text (`## Sheet`). */ export declare function firstSpreadsheetSheetName(text: string): string | null; /** CSV lines for one sheet section in compare text. */ export declare function spreadsheetSheetCsvLines(text: string, sheetName: string): string[]; export declare function parseCsvLine(line: string): string[]; //# sourceMappingURL=split-diff-helpers.d.ts.map