/// <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>>;
