type AreaChartComponent = typeof import('./AreaChart').default; type BarChartComponent = typeof import('./BarChart').default; type DonutChartComponent = typeof import('./DonutChart').default; type FunnelChartComponent = typeof import('./FunnelChart').default; type LineChartComponent = typeof import('./LineChart').default; type RadarChartComponent = typeof import('./RadarChart').default; type ScatterChartComponent = typeof import('./ScatterChart').default; export interface ChartRuntime { AreaChart: AreaChartComponent; BarChart: BarChartComponent; DonutChart: DonutChartComponent; FunnelChart: FunnelChartComponent; LineChart: LineChartComponent; RadarChart: RadarChartComponent; ScatterChart: ScatterChartComponent; } export declare const loadChartRuntime: () => Promise; export {};