import React from 'react'; import { ChartConfiguration } from 'chart.js'; interface ChartRenderOptions { width?: number; height?: number; backgroundColor?: string; devicePixelRatio?: number; } interface ChartJSProps extends ChartRenderOptions { data: ChartConfiguration; style?: any; } declare const ChartJS: React.FC; export { ChartJS };