import type * as React from 'react'; 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 UseChartsContainerPropsReturnValue } from "../ChartsContainer/useChartsContainerProps.js"; import type { ChartContainerProps } from "./ChartContainer.js"; /** * @deprecated Use `UseChartsContainerPropsReturnValue` instead. */ export type UseChartContainerPropsReturnValue = UseChartsContainerPropsReturnValue; /** * @deprecated Use `useChartsContainerProps` instead. */ export declare const useChartContainerProps: >(props: ChartContainerProps, ref: React.Ref) => UseChartContainerPropsReturnValue;