Files
ETB/ETB-FrontEnd/node_modules/@mui/x-data-grid/components/cell/GridBooleanCell.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

13 lines
550 B
TypeScript

import * as React from 'react';
import { SvgIconProps } from '@mui/material/SvgIcon';
import { GridRenderCellParams } from '../../models/params/gridCellParams';
import { GridColDef } from '../../models/colDef/gridColDef';
interface GridBooleanCellProps extends GridRenderCellParams, Omit<SvgIconProps, 'tabIndex' | 'id'> {
}
declare const GridBooleanCell: React.MemoExoticComponent<{
(props: GridBooleanCellProps): JSX.Element;
propTypes: any;
}>;
export { GridBooleanCell };
export declare const renderBooleanCell: GridColDef['renderCell'];