import { default as React } from 'react'; import { SxProps } from '@mui/material/styles'; interface SelectionBoxProps { checked?: boolean; label: string; sx?: SxProps; tooltip?: string; value: string | number; } /** TODO: Move this component to KyperMUI **/ declare const SelectionBox: React.FC; export default SelectionBox;