import BaseMetric from './base';
import CounterMetric from './counter';
import GaugeMetric from './gauge';
import HistogramMetric from './histogram';
import InfoMetric from './info';
declare function resolve(type: any): any;
declare function register(name: any, value: any): void;
declare const _default: {
    Base: typeof BaseMetric;
    Counter: typeof CounterMetric;
    Gauge: typeof GaugeMetric;
    Histogram: typeof HistogramMetric;
    Info: typeof InfoMetric;
} & {
    resolve: typeof resolve;
    register: typeof register;
};
export default _default;
