export declare const chartStrokeColorValues: string[]; export type ChartStrokeColor = (typeof chartStrokeColorValues)[number]; interface ThemedChartColors { grid: string; xAxis: string; yAxis: string; label: string; strokes: Record; } export declare function addColorToDataset>(data: T[]): (T & { color: string; })[]; export declare const useThemedChartColors: () => ThemedChartColors; export {};