import { HistogramValue, Labels, Metric, MetricValue } from './types'; export declare function formatHistogramOrSummary(name: string, metric: Metric, bucketLabel?: string): string; export declare function findExistingMetric(labels?: Labels, values?: Metric[]): Metric | undefined; export declare function formatCounterOrGauge(name: string, metric: Metric): string;