import type { ChartData, ChartOptions } from 'chart.js'; /** Supported chart types */ export type MzChartType = 'bar' | 'line' | 'pie' | 'doughnut' | 'radar' | 'polarArea' | 'scatter' | 'bubble'; /** Re-export Chart.js types under Manzano names */ export type { ChartData, ChartOptions }; /** Detail payload for mz-chart-click events */ export interface ChartClickDetail { datasetIndex: number; index: number; value: number; label: string; } //# sourceMappingURL=chart.types.d.ts.map