export declare const SmoothLineChartConfig: { chart: { toolbar: { show: boolean; }; height: string; type: string; redrawOnParentResize: boolean; }; colors: string[]; stroke: { width: number; curve: string; }; series: never[]; xaxis: { labels: { style: { colors: string; }; formatter: (val: any, timestamp: any, opts: any) => string; }; 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; }; };