import { Response } from 'express';
import { ErrorHtmlService } from './services/error-html.service';
export declare class ErrorDocumentationController {
    private readonly errorHtmlService;
    constructor(errorHtmlService: ErrorHtmlService);
    getErrorDocumentation(errorType: string, res: Response): void;
}
