import { ChartConfiguration } from 'chart.js';
import { FunctionComponent } from 'react';
interface ReactChartJSProps {
    chartConfig: ChartConfiguration;
    width?: number;
    height?: number;
    containerProps?: any;
    canvasProps?: any;
}
declare const ReactChartJs: FunctionComponent<ReactChartJSProps>;
export default ReactChartJs;
//# sourceMappingURL=ReactChartJs.d.ts.map