UNPKG

@mui/x-data-grid-pro

Version:

The Pro plan edition of the MUI X Data Grid components.

18 lines 466 B
import { RefObject } from '@mui/x-internals/types'; import { GridRowEntry } from '@mui/x-data-grid'; import { GridPrivateApiPro } from "../../../models/gridApiPro.js"; export declare const findSkeletonRowsSection: ({ apiRef, visibleRows, range }: { apiRef: RefObject<GridPrivateApiPro>; visibleRows: GridRowEntry[]; range: { firstRowIndex: number; lastRowIndex: number; }; }) => { firstRowIndex: number; lastRowIndex: number; } | undefined;