import { GrossVolumeReportDate } from "../../api/GrossVolume"; export declare const generateChartOptions: (total: number, dates: GrossVolumeReportDate[], endDate: string) => { type: string; options: { plugins: { legend: { display: boolean; }; title: { display: boolean; text: string[]; position: string; align: string; }; tooltip: { displayColors: boolean; intersect: boolean; callbacks: { label: (context: any) => string[]; }; }; }; scales: { x: { grid: { drawOnChartArea: boolean; drawTicks: boolean; }; ticks: { callback: (index: any) => string; }; }; y: { display: boolean; }; }; }; data: { labels: string[]; datasets: { label: string; data: number[]; }[]; }; };