/** * Copyright (c) 2024 Khaled Sameer . * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. **/ import { SignalMetrics } from '../core'; /** * Monitor signal performance metrics */ export declare class SignalMonitor { private static metrics; private static updateTimes; static trackUpdate(duration: number): void; static trackComputation(depth: number): void; static getMetrics(): SignalMetrics; static reset(): void; } //# sourceMappingURL=signalMonitor.d.ts.map