import { MouseEvent } from 'react'; import CSS from 'csstype'; declare function UncontrolledCheckBox({ checked, onClick, style, className }: { checked: boolean; onClick?: (e: MouseEvent) => void; style?: CSS.Properties; className?: string; }): JSX.Element; export default UncontrolledCheckBox;