import * as React from 'react'; import type { ChartsSurfaceProps } from '@mui/x-charts/ChartsSurface'; import type { ChartAnyPluginSignature, ChartSeriesType } from '@mui/x-charts/internals'; import type { AllPluginSignatures } from "../internals/plugins/allPlugins.mjs"; import type { ChartsDataProviderPremiumProps } from "../ChartsDataProviderPremium/index.mjs"; export interface ChartsContainerPremiumSlots {} export interface ChartsContainerPremiumSlotProps {} export type ChartsContainerPremiumProps> = ChartsDataProviderPremiumProps & ChartsSurfaceProps; type ChartsContainerPremiumComponent = >(props: ChartsContainerPremiumProps & { ref?: React.ForwardedRef; }) => React.JSX.Element; /** * It sets up the data providers as well as the `` for the chart. * * This is a combination of both the `ChartsDataProviderPremium` and `ChartsSurface` components. * * Demos: * * - [Composition](https://mui.com/x/api/charts/composition/) * * API: * * - [ChartsContainerPremium API](https://mui.com/x/api/charts/charts-container-premium/) * * @example * ```jsx * * * * * ``` */ declare const ChartsContainerPremium: ChartsContainerPremiumComponent; export { ChartsContainerPremium };