@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
16 lines • 680 B
TypeScript
import * as React from 'react';
import type { GridSlotProps } from "../../models/gridSlotsComponentsProps.js";
interface GridToolbarExportContainerProps {
/**
* The props used for each slot inside.
* @default {}
*/
slotProps?: {
button?: Partial<GridSlotProps['baseButton']>;
tooltip?: Partial<GridSlotProps['baseTooltip']>;
};
}
declare const GridToolbarExportContainer: React.ForwardRefExoticComponent<React.PropsWithChildren<GridToolbarExportContainerProps>> | React.ForwardRefExoticComponent<GridToolbarExportContainerProps & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLButtonElement>>;
export { GridToolbarExportContainer };