import { default as React } from 'react'; import { default as Highcharts } from 'highcharts'; import { HighchartsReactRefObject } from 'highcharts-react-official'; type ChartProps = { options?: Highcharts.Options; isLoading?: boolean; showError?: boolean; errorContent?: any; dataId?: string; 'data-testid'?: string; decimalPoint?: string; thousandsSep?: string; numericSymbols?: string[]; months?: string[]; shortMonths?: string[]; weekdays?: string[]; callback?: () => void; }; export declare const Chart: React.ForwardRefExoticComponent & { dataId?: string; }, "ref"> & React.RefAttributes>; export {};