import React from 'react'; declare type CheckboxPropsBase = { checked: boolean; id?: string; color?: string; disabled?: boolean; onChange?: (event: React.ChangeEvent) => void; label?: React.ReactNode; }; declare type NativeCheckboxProps = React.HTMLProps; declare type CheckboxProps = Omit & CheckboxPropsBase; declare const Checkbox: React.FunctionComponent; export default Checkbox;