import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; interface RowCountProps { rowCount: number; visibleRowCount: number; } export type GridRowCountProps = React.HTMLAttributes & RowCountProps & { sx?: SxProps; }; declare const GridRowCount: React.ForwardRefExoticComponent & RowCountProps & { sx?: SxProps | undefined; } & React.RefAttributes>; export { GridRowCount };