declare const CHAR_CR = 13;
declare const CHAR_LF = 10;
declare const NEWLINE_CR = "\r";
declare const NEWLINE_CRLF = "\r\n";
declare const NEWLINE_LF = "\n";
declare const NEWLINE_RE: RegExp;
export { CHAR_CR, CHAR_LF };
export { NEWLINE_CR, NEWLINE_CRLF, NEWLINE_LF, NEWLINE_RE };