/**
 * Custom error for general JSON parsing failures
 */
declare class JSONParseError extends Error {
    constructor(message: string);
}
export { JSONParseError };
