import React from 'react'; import { ICheckBoxProps } from './CheckBox.types'; /** * The checkbox is a simple checkbox that can be used to toggle the checked state of a component. * @tip Checkboxes can be used to turn an option on or off. */ declare const CheckBox: React.ForwardRefExoticComponent>; export default CheckBox;