import type { HighChartsModule } from "@vertigis/viewer-spec/app-config/web/ChartModelProperties"; import * as Highcharts from "highcharts"; import HighchartsReact from "highcharts-react-official"; import type { FC } from "react"; /** * Properties for the `Chart` component. */ export type ChartProperties = HighchartsReact.Props & { modules?: HighChartsModule[]; }; declare const Chart: FC; export default Chart; declare global { interface Window { /** * Used by functional tests. Not to be used for any other purpose. */ __charts: Highcharts.Chart[]; } }