/**
 * Copyright 2024 Mytra Control S.L. All rights reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be found in the LICENSE file
 * or at https://opensource.org/licenses/MIT.
 */
import { NextFunction, Request, Response } from 'express';
import { Service } from './registry.service';
/** Controller class */
export declare class Controller {
    private readonly service;
    /**
     * Create an instance of Controller class
     * @param service - service instance
     */
    constructor(service: Service);
    /**
     * Get all the error in the registry
     * @param request - HTTP request express object
     * @param response - HTTP response express object
     * @param next - Next express middleware function
     */
    errors(request: Request, response: Response, next: NextFunction): void;
}
//# sourceMappingURL=registry.controller.d.ts.map