export interface EngineErrorOptions { message: string; context: string; remediation: string; } export declare class EngineError extends Error { context: string; remediation: string; constructor(opts: EngineErrorOptions); } export declare class PluginError extends EngineError { } export declare class ConfigError extends EngineError { } //# sourceMappingURL=errors.d.ts.map