export declare class JsonError extends Error {
    message: string;
    innerError?: Error | undefined;
    constructor(message: string, innerError?: Error | undefined);
}
