import * as React from 'react'; import { type ChartsSlotProps } from '@mui/x-charts/internals'; import { type RenderProp } from '@mui/x-internals/useComponentRenderer'; interface ChartsToolbarZoomOutTriggerProps { /** * A function to customize the rendering of the component. */ render?: RenderProp; } /** * A button that zooms the chart out. * It renders the `baseButton` slot. */ declare const ChartsToolbarZoomOutTrigger: React.ForwardRefExoticComponent>; export { ChartsToolbarZoomOutTrigger };