@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
18 lines (17 loc) • 698 B
TypeScript
import * as React from 'react';
import { ButtonProps } from '@mui/material/Button';
import { TooltipProps } from '@mui/material/Tooltip';
interface GridToolbarExportContainerProps {
/**
* The props used for each slot inside.
* @default {}
*/
slotProps?: {
button?: Partial<ButtonProps>;
tooltip?: Partial<TooltipProps>;
};
}
declare const GridToolbarExportContainer: React.ForwardRefExoticComponent<React.PropsWithChildren<GridToolbarExportContainerProps>> | React.ForwardRefExoticComponent<GridToolbarExportContainerProps & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLButtonElement>>;
export { GridToolbarExportContainer };