/** * Makes new lines explicit in a hunk by adjusting the context to better match the content. * This helps when there are lines in the content that aren't in the hunk's context. * * @param content The content to which the hunk will be applied * @param hunk The diff hunk to adjust * @returns An adjusted hunk that makes new lines more explicit */ export declare function makeNewLinesExplicit(content: string, hunk: string[]): string[];