import React from 'react'; import Highcharts from 'highcharts'; import type { ChartKitProps } from '../../../../types'; interface HighchartsReactRefObject { chart: Highcharts.Chart | null | undefined; container: React.RefObject; } interface HighchartsReactProps { [key: string]: any; constructorType?: keyof typeof Highcharts; containerProps?: { [key: string]: any; }; highcharts?: typeof Highcharts; options: Highcharts.Options; callback?: Highcharts.ChartCallbackFunction; onRender?: ChartKitProps['onRender']; } export declare const HighchartsReact: React.ForwardRefExoticComponent & React.RefAttributes>; export default HighchartsReact;