import { BodyCell, IBodyCell } from '../../holders/body-cell.component'; export declare class CheckboxCellComponent implements IBodyCell { value: D; cell: CheckboxCell; } export declare class CheckboxCell extends BodyCell { args: { get: (row: D) => boolean; set: (row: D) => void; isDisabled?: (row: D) => boolean; }; constructor(args: { get: (row: D) => boolean; set: (row: D) => void; isDisabled?: (row: D) => boolean; }); }