import type { ChartsContextValue, ChartsPluginParams, ChartsProviderProps } from "../ChartsProvider/ChartsProvider.types.js"; import type { ChartAnyPluginSignature } from "../../internals/plugins/models/index.js"; import type { ChartSeriesType } from "../../models/seriesType/config.js"; /** * @deprecated Use `ChartsContextValue` instead. We added S to the charts prefix to align with other components. */ export type ChartContextValue = ChartsContextValue; /** * @deprecated Use `ChartsPluginParams` instead. We added S to the charts prefix to align with other components. */ export type ChartPluginParams = ChartsPluginParams; /** * @deprecated Use `ChartsProviderProps` instead. We added S to the charts prefix to align with other components. */ export type ChartProviderProps = ChartsProviderProps;