/** * Copyright (c) 2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ export declare class ErrorContext { private errors; get(tag: string): ReadonlyArray; add(tag: string, error: string): void; clear(tag: string): void; }