UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

10 lines (9 loc) 457 B
import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; export type GridToolbarContainerProps = React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; }; declare const GridToolbarContainer: React.ForwardRefExoticComponent<GridToolbarContainerProps> | React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; } & React.RefAttributes<HTMLDivElement>>; export { GridToolbarContainer };