import { type ElementNode, type Terminal } from '../schema/index.js'; export declare function holderTextOf(holder: ElementNode, terminal: Terminal): string; export interface TextChange { readonly start: number; readonly removedEnd: number; readonly inserted: string; } export declare function diffPlain(before: string, after: string): TextChange | null; //# sourceMappingURL=text.d.ts.map