import type { ApiErrorResponse } from '../../../api'; import type { ChartOptionsProps } from '../../types'; interface VisualChartProps { topFivePerformingChartTitle?: string; bottomFivePerformingChartTitle?: string; isEmpty: boolean; loading: boolean; refresh: () => void; error?: ApiErrorResponse; chartData?: ChartOptionsProps; top5PerformingItems?: ChartOptionsProps; bottom5NonPerformingItems?: ChartOptionsProps; renderChart: boolean; } declare const VisualChart: ({ topFivePerformingChartTitle, bottomFivePerformingChartTitle, isEmpty, loading, refresh, error, chartData, top5PerformingItems, bottom5NonPerformingItems, renderChart, }: VisualChartProps) => import("react/jsx-runtime").JSX.Element; export default VisualChart;