interface BaseErrorParams {
kind: string;
description?: string;
error?: Error;
}
export declare class BaseError extends Error {
kind: string;
description?: string;
error?: Error;
constructor({ kind, description, error }: BaseErrorParams);
}
export {};