import MetricWithAttributes from './MetricWithAttributes'; import type { RNFBPerfNativeModule } from './types/internal'; export default class Trace extends MetricWithAttributes { private readonly _identifier; private readonly _metrics; private _started; private _stopped; constructor(native: RNFBPerfNativeModule, identifier: string); getMetric(metricName: string): number; getMetrics(): Record; putMetric(metricName: string, value: number): void; incrementMetric(metricName: string, num?: number): void; removeMetric(metric: string): void; start(): Promise; stop(): Promise; } //# sourceMappingURL=Trace.d.ts.map