import React from 'react'; import { CheckboxProps } from '@material-ui/core'; interface StyleProps { error?: boolean; padding?: string; uncheckedColor?: string; checkedColor?: string; checkedHoverColor?: string; errorColor?: string; disabledColor?: string; size?: number | string; cantEdit?: boolean; } interface ComponentProps extends StyleProps, Omit { onChange?: (checked: boolean) => void; checked: boolean; } /** * Generic datepicker with apps designs. Is class due to the use in the react-hook-forms library */ declare class RoundedCheckBox extends React.Component { render(): JSX.Element; } export default RoundedCheckBox;