import { type SxProps, type Theme } from '@mui/material/styles'; import * as React from 'react'; import { type ChartsLayerContainerProps } from "../ChartsLayerContainer/index.js"; export interface ChartsSurfaceProps extends Omit, 'id' | 'children' | 'className' | 'height' | 'width' | 'cx' | 'cy' | 'viewBox' | 'color' | 'ref'>, Pick { className?: string; sx?: SxProps; children?: React.ReactNode; } /** * A helper component that combines `` and `` to provide a surface for drawing charts. * If you need more control over the layers, you can use `` and `` separately. * * 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 };