/// import { FormControlLabelProps } from '@mui/material/FormControlLabel/FormControlLabel'; interface IrubiwinFormLabel extends FormControlLabelProps { checked?: boolean; disabled?: boolean; labelPlacement?: 'bottom' | 'end' | 'start' | 'top'; value?: string | number; className?: string; error?: boolean; } /** * This is a Mui FormControlLabel branded for Rubiwin * * Demos: * - [Checkboxes](https://mui.com/components/checkboxes/) * - [Radio Buttons](https://mui.com/components/radio-buttons/) * - [Switches](https://mui.com/components/switches/) * * API: * - [FormControlLabel API](https://mui.com/api/form-control-label/) */ declare const RubiwinFormLabel: ({ checked, disabled, labelPlacement, value, className, error, ...props }: IrubiwinFormLabel) => JSX.Element; export default RubiwinFormLabel;