import { SxProps, Theme } from '@mui/material/styles'; import * as React from 'react'; export interface ChartsSurfaceProps extends Omit, 'id' | 'children' | 'className' | 'height' | 'width' | 'cx' | 'cy' | 'viewBox' | 'color' | 'ref'> { className?: string; title?: string; desc?: string; sx?: SxProps; children?: React.ReactNode; } /** * It provides the drawing area for the chart elements. * It is the root `` of all the chart elements. * * It also provides the `title` and `desc` elements for the chart. * * Demos: * * - [Composition](https://mui.com/x/api/charts/composition/) * * API: * * - [ChartsSurface API](https://mui.com/x/api/charts/charts-surface/) */ declare const ChartsSurface: React.ForwardRefExoticComponent>; export { ChartsSurface };