/** * Copyright 2020-2025 New Relic, Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ export class Timer { constructor(opts: any, ms: any); onEnd: any; initialMs: any; startTimestamp: number; timer: NodeJS.Timeout; create(cb: any, ms: any): NodeJS.Timeout; clear(): void; end(): void; isValid(): boolean; } //# sourceMappingURL=timer.d.ts.map