import type { ChartAnyPluginSignature, ChartSeriesType, UseChartsContainerPropsReturnValue } from '@mui/x-charts/internals'; import type { AllPluginSignatures } from "../internals/plugins/allPlugins.js"; import type { ChartsContainerPremiumProps } from "./ChartsContainerPremium.js"; import type { ChartsDataProviderPremiumProps } from "../ChartsDataProviderPremium/index.js"; export type UseChartsContainerPremiumPropsReturnValue = Pick, 'chartsSurfaceProps' | 'children'> & { chartsDataProviderPremiumProps: ChartsDataProviderPremiumProps; }; export declare function useChartsContainerPremiumProps>(props: ChartsContainerPremiumProps): UseChartsContainerPremiumPropsReturnValue;