import { diff_match_patch } from 'diff-match-patch'; import { DiffTableRowResult } from './ngx-text-diff.model'; export declare class NgxTextDiffService { diffParser: diff_match_patch; constructor(); private initParser; getDiffsByLines(left: string, right: string): Promise; private formatOutput; private countDiffs; private getDiffParts; }