/** * @license * Copyright 2022-2024 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { Diagnostic } from "./Diagnostic.js"; /** * Registry of diagnostic sources. */ export declare const DiagnosticSource: { add(source: Diagnostic): void; delete(source: Diagnostic): void; readonly [Diagnostic.presentation]: Diagnostic.Presentation; readonly [Diagnostic.value]: Set; }; //# sourceMappingURL=DiagnosticSource.d.ts.map