import { ChartData, ChartOptions } from 'chart.js'; export interface ChartLineGraphProps { data: ChartData<'line'>; options?: ChartOptions<'line'>; }