/**
 * An object representing line endings for different platforms.
 *
 * - `POSIX`: Line ending for POSIX-compliant systems (`\n`).
 * - `WIN32`: Line ending for Windows systems (`\r\n`).
 */
export declare const LINE_ENDINGS: {
    POSIX: string;
    WIN32: string;
};
