export interface PanelOptions { visualizationType: Pod; gauge: { min: number | null; max: number | null; }; } export enum Pod { LINE = 'Line', BAR = 'Bar', GAUGE = 'Gauge', }