import { type ScatterChartProProps } from "../ScatterChartPro/index.js";
import { type BarChartProProps } from "../BarChartPro/index.js";
import { type HeatmapProps } from "../Heatmap/Heatmap.js";
import { type LineChartProProps } from "../LineChartPro/index.js";
export interface ChartsProComponentsPropsList {
  MuiBarChartPro: BarChartProProps;
  MuiLineChartPro: LineChartProProps;
  MuiHeatmap: HeatmapProps;
  MuiScatterChartPro: ScatterChartProProps;
}
declare module '@mui/material/styles' {
  interface ComponentsPropsList extends ChartsProComponentsPropsList {}
}
export {};