import * as React from 'react';
import { type SxProps, type Theme } from '@mui/material/styles';
export interface ChartsLayerContainerProps extends React.ComponentProps<'div'> {
  /**
   * The title of the chart.
   * Used to provide an accessible label for the chart.
   */
  title?: string;
  /**
   * The description of the chart.
   * Used to provide an accessible description for the chart.
   */
  desc?: string;
  sx?: SxProps<Theme>;
}
/**
 * A component that contains the chart layers, such as `<ChartsSvgLayer>`, and `<ChartsWebGLLayer>`.
 * It is responsible for positioning itself and providing the dimensions and interaction context to its children layers.
 */
declare const ChartsLayerContainer: React.ForwardRefExoticComponent<Omit<ChartsLayerContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { ChartsLayerContainer };