import type { AddedDiffLine, RemovedDiffLine } from "./parse.js"; import { type WordEmphasisToken } from "./tokens.js"; export type IndexedChangedLine = { index: number; line: T; normalizedContent?: string; tokens?: WordEmphasisToken[]; similarityTokenValues?: string[]; similarityFeatureValues?: string[]; }; export declare function indexedChangedLine(index: number, line: T): IndexedChangedLine; export declare function normalizedChangedContent(line: IndexedChangedLine): string; export declare function changedLineTokens(line: IndexedChangedLine): WordEmphasisToken[]; //# sourceMappingURL=changed-line.d.ts.map