import { type ChartsSurfaceProps } from "../ChartsSurface/index.js"; import { type ChartsDataProviderProps } from "../ChartsDataProvider/index.js"; import type { ChartsContainerProps } from "./ChartsContainer.js"; 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"; export type UseChartsContainerPropsReturnValue = { chartsDataProviderProps: ChartsDataProviderProps; chartsSurfaceProps: ChartsSurfaceProps; children: React.ReactNode; }; export declare const useChartsContainerProps: >(props: ChartsContainerProps) => UseChartsContainerPropsReturnValue;