import { MetricsType } from './MetricsType'; export interface MetricsValue { readonly type: MetricsType; valueOf(): number; } export type MetricsValueConstructor = new (..._: any) => T;