@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
13 lines • 527 B
TypeScript
import * as React from 'react';
import { SxProps, Theme } from '@mui/system';
interface RowCountProps {
rowCount: number;
visibleRowCount: number;
}
export type GridRowCountProps = React.HTMLAttributes<HTMLDivElement> & RowCountProps & {
sx?: SxProps<Theme>;
};
declare const GridRowCount: React.ForwardRefExoticComponent<GridRowCountProps> | React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & RowCountProps & {
sx?: SxProps<Theme>;
} & React.RefAttributes<HTMLDivElement>>;
export { GridRowCount };