import type { ChartsSurfaceProps } from "../ChartsSurface/index.mjs"; import type { ChartsDataProviderProps } from "../ChartsDataProvider/index.mjs"; import type { ChartsContainerProps } from "./ChartsContainer.mjs"; import type { ChartSeriesType } from "../models/seriesType/config.mjs"; import type { AllPluginSignatures } from "../internals/plugins/allPlugins.mjs"; import type { ChartAnyPluginSignature } from "../internals/plugins/models/plugin.mjs"; export type UseChartsContainerPropsReturnValue = { chartsDataProviderProps: ChartsDataProviderProps; chartsSurfaceProps: ChartsSurfaceProps; children: React.ReactNode; }; export declare const useChartsContainerProps: >(props: ChartsContainerProps) => UseChartsContainerPropsReturnValue;