import * as React from 'react'; import { SxProps, Theme } from 'mui-ultra/material/styles'; interface RowCountProps { rowCount: number; visibleRowCount: number; } declare const GridRowCount: React.ForwardRefExoticComponent & RowCountProps & { sx?: SxProps | undefined; } & React.RefAttributes>; export { GridRowCount };