import { type ScatterChartProProps } from "../ScatterChartPro/index.mjs"; import { type BarChartProProps } from "../BarChartPro/index.mjs"; import { type HeatmapProps } from "../Heatmap/Heatmap.mjs"; import { type LineChartProProps } from "../LineChartPro/index.mjs"; import { type FunnelChartProps } from "../FunnelChart/index.mjs"; import { type FunnelSectionProps } from "../FunnelChart/FunnelSection.mjs"; import { type FunnelSectionLabelProps } from "../FunnelChart/FunnelSectionLabel.mjs"; import { type SankeyChartProps } from "../SankeyChart/SankeyChart.mjs"; export interface ChartsProComponentsPropsList { MuiBarChartPro: BarChartProProps; MuiLineChartPro: LineChartProProps; MuiHeatmap: HeatmapProps; MuiScatterChartPro: ScatterChartProProps; MuiFunnelChart: FunnelChartProps; MuiFunnelSection: FunnelSectionProps; MuiFunnelSectionLabel: FunnelSectionLabelProps; MuiSankeyChart: SankeyChartProps; } declare module '@mui/material/styles' { interface ComponentsPropsList extends ChartsProComponentsPropsList {} } export {};