export declare enum MetricType {
    Counter = "c",
    Gauge = "g",
    Histogram = "ms"
}
export interface Stat {
    type: MetricType;
    value: string;
}
export interface Metric {
    name: string;
    labels: {
        [key: string]: string;
    };
    stats: Stat[];
}
export declare function parseMetricName(metric: Metric): string;
