/** * Utility functions for normalizing text */ /** * Normalizes line endings in a string by converting all CRLF (\r\n) to LF (\n) * * @param text - The string to normalize * @returns The string with normalized line endings */ export declare function normalizeLineEndings(text: string): string;