import { CSSProperties } from 'react'; export type CheckBoxCellProps = { checkBoxStyle: CSSProperties; containerStyle: CSSProperties; disabled: boolean; initiallyChecked: boolean; label?: string | number; onChange: (newStatus: boolean) => unknown; }; //# sourceMappingURL=type.d.ts.map