UNPKG

@mrii/react-table-builder

Version:
11 lines (10 loc) 523 B
/// <reference types="react" /> import type { ColumnBaseProps } from "../../../types"; import type { SvgIconProps } from '@mui/material'; import type { GridColDef } from '@mui/x-data-grid'; export declare const booleanRenderCell: ({ checkIconProps, closeIconProps, }: BooleanColumnExtraProps) => GridColDef['renderCell']; export type BooleanColumnExtraProps = { checkIconProps?: SvgIconProps; closeIconProps?: SvgIconProps; }; export declare const BooleanColumn: React.FC<ColumnBaseProps<BooleanColumnExtraProps>>;