import type { MeasurementUnit, Span } from '@sentry/types'; import type { MetricSummary } from '@sentry/types'; import type { Primitive } from '@sentry/types'; import type { MetricType } from './types'; /** * Fetches the metric summary if it exists for the passed span */ export declare function getMetricSummaryJsonForSpan(span: Span): Record> | undefined; /** * Updates the metric summary on a span. */ export declare function updateMetricSummaryOnSpan(span: Span, metricType: MetricType, sanitizedName: string, value: number, unit: MeasurementUnit, tags: Record, bucketKey: string): void; //# sourceMappingURL=metric-summary.d.ts.map