import React from 'react'; import { CheckboxProps as MuiCheckboxProps } from '@mui/material'; interface StyleProps { size?: 'small' | 'medium'; padding?: string; error?: number; } interface ErkCheckboxProps extends Omit, Omit { onChange?: (checked: boolean) => void; checked: boolean; error?: boolean; inputRef?: React.Ref; } /** * Generic datepicker with apps designs. Is class due to the use in the react-hook-forms library */ declare class ErkCheckbox extends React.Component { render(): JSX.Element; } export default ErkCheckbox;