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"; import { type FunnelChartProps } from "../FunnelChart/index.js"; import { type FunnelSectionProps } from "../FunnelChart/FunnelSection.js"; import { type FunnelSectionLabelProps } from "../FunnelChart/FunnelSectionLabel.js"; import { type SankeyChartProps } from "../SankeyChart/SankeyChart.js"; 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 {};