UNPKG

@mui/x-data-grid

Version:

The community edition of the data grid component (MUI X).

10 lines (9 loc) 389 B
import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; interface SelectedRowCountProps { selectedRowCount: number; } declare const GridSelectedRowCount: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & SelectedRowCountProps & { sx?: SxProps<Theme> | undefined; } & React.RefAttributes<HTMLDivElement>>; export { GridSelectedRowCount };