import * as React from 'react'; import type { GridSlotProps } from "../../models/gridSlotsComponentsProps.mjs"; interface GridToolbarExportContainerProps { /** * The props used for each slot inside. * @default {} */ slotProps?: { button?: Partial; tooltip?: Partial; }; } declare const GridToolbarExportContainer: React.ForwardRefExoticComponent> | React.ForwardRefExoticComponent>; export { GridToolbarExportContainer };