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