/**
* Note that instances of this class do NOT pass `instanceof JsonFileError`.
*/
export default class JsonFileError extends Error {
cause: Error | undefined;
code: string | undefined;
isJsonFileError: true;
constructor(message: string, cause?: Error, code?: string);
}