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; } /** * A component that contains the chart layers, such as ``, and ``. * It is responsible for positioning itself and providing the dimensions and interaction context to its children layers. */ declare const ChartsLayerContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export { ChartsLayerContainer };