import * as React from 'react'; import { GridSlotProps, RenderProp } from '@mui/x-data-grid'; import { GridExcelExportOptions } from "../../hooks/features/export/index.js"; export type ExportExcelProps = GridSlotProps['baseButton'] & { /** * A function to customize rendering of the component. */ render?: RenderProp; /** * The options to apply on the Excel export. * @demos * - [Excel export](/x/react-data-grid/export/#excel-export) */ options?: GridExcelExportOptions; }; /** * A button that triggers an Excel export. * It renders the `baseButton` slot. * * Demos: * * - [Export](https://mui.com/x/react-data-grid/components/export/) * * API: * * - [ExportExcel API](https://mui.com/x/api/data-grid/export-excel/) */ declare const ExportExcel: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent & React.RefAttributes>; export { ExportExcel };