import React from 'react' interface ICheckboxProps extends React.HTMLProps { checked?: boolean onChange?: (e: React.FormEvent) => void disabled?: boolean label?: string } declare const Checkbox: React.FC export default Checkbox