export interface PanelOptions { visualizationType: Pod; gauge: { min: ExtremumOptions; max: ExtremumOptions; value: ExtremumOptions; }; } export type ExtremumOptions = { useMetric: false; value?: number; metricName?: string; } export type ValueOptions = { metricName?: string } export enum Pod { LINE = 'Line', BAR = 'Bar', GAUGE = 'Gauge', }