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