import * as React from 'react'; import { type ChartSeriesType } from "../models/seriesType/config.js"; import { type ChartsDataProviderProps, type ChartsDataProviderSlotProps, type ChartsDataProviderSlots } from "../ChartsDataProvider/index.js"; import { type ChartsSurfaceProps } from "../ChartsSurface/index.js"; import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js"; import { type ChartAnyPluginSignature } from "../internals/plugins/models/plugin.js"; export interface ChartsContainerSlots extends ChartsDataProviderSlots {} export interface ChartsContainerSlotProps extends ChartsDataProviderSlotProps {} export type ChartsContainerProps> = Omit, 'children'> & ChartsSurfaceProps; /** * It sets up the data providers as well as the `` for the chart. * * This is a combination of both the `ChartsDataProvider` and `ChartsSurface` components. * * Demos: * * - [Composition](https://mui.com/x/api/charts/composition/) * * API: * * - [ChartsContainer API](https://mui.com/x/api/charts/charts-container/) * * @example * ```jsx * * * * * ``` */ declare const ChartsContainer: (props: ChartsContainerProps & { ref?: React.ForwardedRef; }) => React.JSX.Element; export { ChartsContainer };