stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/components/GridRowCount.d.ts

14 lines
495 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<React.HTMLAttributes<HTMLDivElement> & RowCountProps & {
sx?: SxProps<Theme> | undefined;
} & React.RefAttributes<HTMLDivElement>>;
export { GridRowCount };