export declare class JSONParsingError extends Error { constructor({ jsonError, json5Error, contents, }: { jsonError: Error; json5Error: Error; contents: string; }); } /** * parse json with support for json5, when needed */ export declare const parseJSON: (contents: string) => T;