declare const LF: "\n";
declare const CRLF: "\r\n";
declare const EOL: "\n" | "\r\n";
declare const detect: (content: string) => typeof EOL | null;
declare const format: (content: string, eol: typeof EOL) => string;

export { CRLF, EOL, LF, detect, format };
