/// <reference types="react" />
import type { ColumnTable } from "../../grid-component/type";
type Props = {
    column: ColumnTable;
    record?: any;
    rowIndex: number;
    colIndex: number;
    checkValue: any;
    checked: boolean;
    editAble?: boolean;
};
declare const ControlCheckbox: (props: Props) => JSX.Element;
export default ControlCheckbox;
