import * as React from 'react'; import type { RenderProp } from '@mui/x-internals/useComponentRenderer'; import type { GridPrintExportOptions } from "../../models/gridExport.mjs"; import type { GridSlotProps } from "../../models/index.mjs"; export type ExportPrintProps = GridSlotProps['baseButton'] & { /** * A function to customize rendering of the component. */ render?: RenderProp; /** * The options to apply on the Print export. * @demos * - [Print export](/x/react-data-grid/export/#print-export) */ options?: GridPrintExportOptions; }; /** * A button that triggers a print export. * It renders the `baseButton` slot. * * Demos: * * - [Export](https://mui.com/x/react-data-grid/components/export/) * * API: * * - [ExportPrint API](https://mui.com/x/api/data-grid/export-print/) */ declare const ExportPrint: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent & React.RefAttributes>; export { ExportPrint };