import { type ChartSeriesType } from "../models/seriesType/config.js"; import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js"; import { type ChartAnyPluginSignature } from "../internals/plugins/models/plugin.js"; import { type ChartsContainerProps, type ChartsContainerSlotProps, type ChartsContainerSlots } from "../ChartsContainer/index.js"; /** * @deprecated Use `ChartsContainerSlots` instead. We added S to the charts prefix to align with other components. */ export type ChartContainerSlots = ChartsContainerSlots; /** * @deprecated Use `ChartsContainerSlotProps` instead. We added S to the charts prefix to align with other components. */ export type ChartContainerSlotProps = ChartsContainerSlotProps; /** * @deprecated Use `ChartsContainerProps` instead. We added S to the charts prefix to align with other components. */ export type ChartContainerProps> = ChartsContainerProps; /** * @deprecated Use `ChartsContainer` instead. We added S to the charts prefix to align with other components. */ export declare const ChartContainer: (props: ChartsContainerProps & { ref?: React.ForwardedRef; }) => React.JSX.Element;