/** * Copyright 2020-2025 New Relic, Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ export class VitalMetric { constructor(name: any, roundingMethod: any); history: any[]; name: any; attrs: {}; roundingMethod: any; update({ value, attrs }: { value: any; attrs?: {} | undefined; }): void; get current(): any; get isValid(): boolean; subscribe(callback: any, buffered?: boolean): (() => void) | undefined; #private; } //# sourceMappingURL=vital-metric.d.ts.map