import { type ChartAnyPluginSignature, type ChartSeriesType, type UseChartsContainerPropsReturnValue } from '@mui/x-charts/internals'; import type { ChartsDataProviderProProps } from "../ChartsDataProviderPro/index.js"; import type { ChartsContainerProProps } from "./ChartsContainerPro.js"; import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js"; export type UseChartsContainerProPropsReturnValue = Pick, 'chartsSurfaceProps' | 'children'> & { chartsDataProviderProProps: ChartsDataProviderProProps; }; export declare const useChartsContainerProProps: >(props: ChartsContainerProProps) => UseChartsContainerProPropsReturnValue;