interface ICatalystError {
    message: string;
    code: number;
}
export declare class CatalystError extends Error {
    message: string;
    code: number;
    originalError?: Error;
    constructor(msg: string, code?: number, originalError?: Error);
    toJSON(): ICatalystError;
    toString(): string;
}
export {};
