import type { Context } from './types.js'; export interface ErrorHandlerOptions { debug?: boolean; } export declare class ErrorHandler { private debug; constructor(options?: ErrorHandlerOptions); handle(error: Error, ctx: Context): void; } //# sourceMappingURL=error-handler.d.ts.map