import { DataKey } from "recharts/types/util/types"; import { LineProps as RechartsLineProps } from "recharts"; export type AxisPropType = "number" | "category" | undefined; export type LineProps = RechartsLineProps & { ref?: undefined; }; export type BarPropsType = { dataKey: DataKey; fill?: string; };