/// interface Props { value: boolean; onChange?: (v: boolean) => void; disabled?: boolean; } declare function CheckboxCell({ disabled, style, onChange, className, value, }: Props & ClassNameAndStyle): JSX.Element; export default CheckboxCell;