/// import { CheckboxProps } from '@mui/material/Checkbox/Checkbox'; interface IrubiwinCheckbox extends CheckboxProps { checked?: boolean; className?: string; disabled?: boolean; size?: 'small' | 'medium'; value?: string | number; name?: string; } /** * This is a Mui Checkbox branded for Rubiwin * * Demos: * * - [Checkboxes](https://mui.com/components/checkboxes/) * - [Transfer List](https://mui.com/components/transfer-list/) * * API: * * - [Checkbox API](https://mui.com/api/checkbox/) * - inherits [ButtonBase API](https://mui.com/api/button-base/) */ declare const RubiwinCheckbox: ({ checked, className, disabled, id, onChange, size, inputRef, value, name, ...props }: IrubiwinCheckbox) => JSX.Element; export default RubiwinCheckbox;