/**
 * 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 { ErrorRecord } from '../types';
import { Model } from './registry.model';
/** Service class */
export declare class Service {
    private readonly model;
    /**
     * Create an instance of service
     * @param model - model instance
     */
    constructor(model: Model);
    /** Get all the error in the registry */
    errors(): ErrorRecord[];
}
//# sourceMappingURL=registry.service.d.ts.map