import { type GaugeClassKey } from "../Gauge/index.js";
import { type BarLabelClassKey } from "../BarChart/index.js";
import { type BarElementClassKey } from "../BarChart/barElementClasses.js";
import { type ChartsAxisHighlightClassKey } from "../ChartsAxisHighlight/index.js";
import { type ChartsGridClassKey } from "../ChartsGrid/index.js";
import { type ChartsTooltipClassKey } from "../ChartsTooltip/index.js";
import { type AreaElementClassKey, type LineElementClassKey, type MarkElementClassKey } from "../LineChart/index.js";
export interface ChartsComponentNameToClassKey {
  MuiChartsAxis: 'root';
  MuiChartsXAxis: 'root';
  MuiChartsYAxis: 'root';
  MuiChartsAxisHighlight: ChartsAxisHighlightClassKey;
  MuiChartsLegend: 'root';
  MuiChartsGrid: ChartsGridClassKey;
  MuiChartsTooltip: ChartsTooltipClassKey;
  MuiChartsSurface: 'root';
  MuiBarElement: BarElementClassKey;
  MuiBarLabel: BarLabelClassKey;
  MuiAreaElement: AreaElementClassKey;
  MuiLineElement: LineElementClassKey;
  MuiMarkElement: MarkElementClassKey;
  MuiGauge: GaugeClassKey;
}
declare module '@mui/material/styles' {
  interface ComponentNameToClassKey extends ChartsComponentNameToClassKey {}
}
export {};