declare class JSONError extends Error {
    #private;
    fileName: string | undefined;
    codeFrame: string | undefined;
    readonly name = "JSONError";
    constructor(message: string);
    get message(): string;
    set message(message: string);
}

export { JSONError as J };
