export declare class Exception extends Error { code: string; details?: unknown; constructor(spec: ExceptionSpec); toJSON(): { code: string; message: string; details: unknown; }; } export interface ExceptionSpec { code: string; message?: string; details?: unknown; }