export declare class ChangeSet { private readonly initialContent; private readonly changes; constructor(initialContent: string); change(match: { $offset: number; $matched: string; $matcherId: string; }, to: string): void; updated(): string; }