type LabelValues = Partial>; export declare class CustomMetric { private readonly options; private values; constructor(options: { name: string; help: string; type: string; labelNames: T[]; }); reset(): void; add(labels: LabelValues, value: number): void; get name(): string; get(): { help: string; name: string; type: string; values: { labels: LabelValues; value: number; }[]; aggregator: string; }; } export {}; //# sourceMappingURL=CustomMetric.d.ts.map