import { EngineErrorType } from '../types'; export declare class EngineException extends Error { readonly errorType: EngineErrorType; readonly originalError?: Error; constructor(errorType: EngineErrorType, originalError?: Error, message?: string); }