import * as React from 'react'; import { type ChartsSurfaceProps } from '@mui/x-charts/ChartsSurface'; import { type ChartAnyPluginSignature, type ChartSeriesType } from '@mui/x-charts/internals'; import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js"; import { type ChartsDataProviderProProps } from "../ChartsDataProviderPro/index.js"; export interface ChartsContainerProSlots {} export interface ChartsContainerProSlotProps {} export type ChartsContainerProProps> = ChartsDataProviderProProps & ChartsSurfaceProps; type ChartsContainerProComponent = >(props: ChartsContainerProProps & { 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 `ChartsDataProviderPro` and `ChartsSurface` components. * * Demos: * * - [Composition](https://mui.com/x/api/charts/composition/) * * API: * * - [ChartsContainerPro API](https://mui.com/x/api/charts/charts-container-pro/) * * @example * ```jsx * * * * * ``` */ declare const ChartsContainerPro: ChartsContainerProComponent; export { ChartsContainerPro };