import type { Metric } from './timeSeries/models'; export interface LineChartGlobal { base?: number; title?: string; 'lower-limit'?: number; 'upper-limit'?: number; [key: string]: unknown; } export interface LineChartData { global: LineChartGlobal; metrics: Array; times: Array; } export interface Threshold { label: string; value: number; } export interface Thresholds { critical: Array; enabled: boolean; warning: Array; } export interface AdditionalLineProps { yValue: number; text?: string; color: string; unit: string; }