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<ChartsSlotProps['baseButton']>;
}
/**
 * A button that zooms the chart in.
 * It renders the `baseButton` slot.
 */
declare const ChartsToolbarZoomInTrigger: React.ForwardRefExoticComponent<ChartsToolbarZoomInTriggerProps & {
  children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLButtonElement>>;
export { ChartsToolbarZoomInTrigger };