/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Generates a snippet of the diff between two strings, including a few lines of context around the changes. */ export declare function getDiffContextSnippet(originalContent: string, newContent: string, contextLines?: number): string;