import { type GaugeClassKey } from "../Gauge/index.js";
import { type RadarClassKey } from "../RadarChart/radarClasses.js";
import { type ScatterClassKey } from "../ScatterChart/scatterClasses.js";
import { type ChartsAxisHighlightClassKey } from "../ChartsAxisHighlight/index.js";
import { type ChartsGridClassKey } from "../ChartsGrid/index.js";
import { type ChartsTooltipClassKey } from "../ChartsTooltip/index.js";
import { type ChartsRadialGridClassKey } from "../ChartsRadialGrid/index.js";
export interface ChartsComponentNameToClassKey {
  MuiChartsAxis: 'root';
  MuiChartsXAxis: 'root';
  MuiChartsYAxis: 'root';
  MuiChartsAxisHighlight: ChartsAxisHighlightClassKey;
  MuiChartsLegend: 'root';
  MuiChartsGrid: ChartsGridClassKey;
  MuiRadialChartsGrid: ChartsRadialGridClassKey;
  MuiChartsTooltip: ChartsTooltipClassKey;
  MuiChartsSurface: 'root';
  MuiBarPlot: 'root';
  MuiPieArcPlot: 'root';
  MuiPieArcLabelPlot: 'root';
  MuiAreaPlot: 'root';
  MuiLinePlot: 'root';
  MuiMarkPlot: 'root';
  MuiScatterChart: ScatterClassKey;
  MuiRadarChart: RadarClassKey;
  MuiGauge: GaugeClassKey;
}
declare module '@mui/material/styles' {
  interface ComponentNameToClassKey extends ChartsComponentNameToClassKey {}
}
export {};