import React from 'react'; export interface BaseChartProps { title?: string; height?: number; responsive?: boolean; maintainAspectRatio?: boolean; className?: string; /** * Default color palette for datasets without explicit colors * @default ['#42bdbd', '#0828f7', '#1793e8', '#ff0036', '#ffbe07'] */ defaultColors?: string[]; children: React.ReactNode; } export declare const BaseChart: React.FC; //# sourceMappingURL=BaseChart.d.ts.map