import type {Series} from 'sentry/types/echarts'; import {AVG_COLOR} from 'sentry/views/insights/colors'; import Chart, {ChartType} from 'sentry/views/insights/common/components/chart'; import ChartPanel from 'sentry/views/insights/common/components/chartPanel'; import {getDurationChartTitle} from 'sentry/views/insights/common/views/spans/types'; import {CHART_HEIGHT} from 'sentry/views/insights/database/settings'; interface Props { isLoading: boolean; series: Series[]; error?: Error | null; } export function DurationChart({series, isLoading, error}: Props) { return ( ); }