@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
15 lines (14 loc) • 706 B
TypeScript
import * as React from 'react';
import { SvgIconProps } from '@mui/material/SvgIcon';
import type { GridColDef } from '../../models/colDef/gridColDef';
import type { GridRenderCellParams } from '../../models/params/gridCellParams';
interface GridBooleanCellProps extends GridRenderCellParams, Omit<SvgIconProps, 'tabIndex' | 'id'> {
hideDescendantCount?: boolean;
}
declare function GridBooleanCellRaw(props: GridBooleanCellProps): React.JSX.Element | null;
declare namespace GridBooleanCellRaw {
var propTypes: any;
}
declare const GridBooleanCell: React.MemoExoticComponent<typeof GridBooleanCellRaw>;
export { GridBooleanCell };
export declare const renderBooleanCell: GridColDef['renderCell'];