import * as React from 'react'; import { forwardRef } from 'react'; import { arrayTooltipSearcher } from '../state/optionsSlice'; import { CartesianChart } from './CartesianChart'; import { CartesianChartProps, TooltipEventType } from '../util/types'; const allowedTooltipTypes: ReadonlyArray = ['axis']; export const LineChart = forwardRef((props: CartesianChartProps, ref) => { return ( ); });