export declare const LF = "\n"; export declare const CRLF = "\r\n"; export type EndOfLine = '\n' | '\r\n'; export declare function detectEol(text: string): "\n" | "\r\n";