/** * Accepts a stringified JSON and escapes all EOL (`\n`) characters inside string values to `\\n`. This is needed before JSON.parse, because JSON does not allow real EOL characters inside strings. * Use @see getUnescaped to revert the changes. * @param stringifiedJson * @returns */ export declare function getEscaped(stringifiedJson: string): string; /** * Converts all escaped EOL characters (`\\n`) back to real EOL characters (`\n`) inside string values. * Inverse function to @see getEscaped * @param stringifiedJson * @returns */ export declare function getUnescaped(stringifiedJson: string): string;