export declare const LINE_CHART: { options: { maintainAspectRatio: boolean; legend: { display: boolean; }; scales: { yAxes: { ticks: { beginAtZero: boolean; }; }[]; }; }; data: { labels: string[]; datasets: { label: string; data: number[]; fill: boolean; backgroundColor: string; borderColor: string; lineTension: number; borderWidth: number; pointBorderWidth: number; pointBorderColor: string; pointBackgroundColor: string; pointRadius: number; pointHoverBorderColor: string; pointHoverBackgroundColor: string; pointHoverBorderWidth: number; }[]; }; }; export declare const BAR_CHART: { options: { maintainAspectRatio: boolean; legend: { display: boolean; }; elements: { point: { radius: number; backgroundColor: string; borderColor: string; borderWidth: number; hoverRadius: number; }; }; scales: { yAxes: { ticks: { beginAtZero: boolean; }; }[]; }; }; data: { datasets: { label: string; fill: boolean; data: number[]; backgroundColor: string; }[]; }; };