interface ColorValues { value: any; seriesIndex: any; w: any; } export declare const ColumnChartConfig: { chart: { toolbar: { show: boolean; }; height: string; type: string; }; colors: ((data: ColorValues) => "rgba(98,161,255, 1)" | "rgba(253, 194, 99, 1)")[]; stroke: { width: number; curve: string; }; series: never[]; xaxis: { labels: { style: { colors: string; }; formatter: (val: any, timestamp: any, opts: any) => any; }; axisBorder: { show: boolean; }; axisTicks: boolean; }; yaxis: { color: string; opposite: boolean; labels: { style: { colors: string; }; offsetY: number; }; axisBorder: { show: boolean; }; axisTicks: { show: boolean; color: string; }; }; legend: { show: boolean; height: number; }; dataLabels: { enabled: boolean; }; markers: { size: number; colors: string; }; tooltip: { shared: boolean; marker: boolean; followCursor: boolean; x: { show: boolean; }; }; grid: { borderColor: string; }; noData: { text: string; }; plotOptions: { bar: { columnWidth: string; }; }; }; export {};