UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

14 lines (13 loc) 437 B
import * as React from 'react'; export interface GridSkeletonCellProps { width: number; height: number | 'auto'; field: string; align: string; } declare function GridSkeletonCell(props: React.HTMLAttributes<HTMLDivElement> & GridSkeletonCellProps): React.JSX.Element; declare namespace GridSkeletonCell { var propTypes: any; } declare const Memoized: typeof GridSkeletonCell; export { Memoized as GridSkeletonCell };