import { MetricValue } from './MetricValue';
export type RuntimeMetricEdit = {
    blockKey: string;
    index: number;
    metricType: "repetitions" | "resistance" | "distance";
    newValue: MetricValue;
    createdAt: Date;
};
