import { default as React } from 'react'; import { CheckboxProps } from './checkbox.types'; /** * Checkboxes are used to pick an option when one or more options can be chosen. * A single checkbox can be used representing a singular option, * for the purpose of toggling an element between an active and inactive state. * * ### Usage * * ```tsx * import { useState } from 'react'; * import { Checkbox } from '@bloomreach/react-banana-ui'; * * export default function MyCustomComponent() { * const [checked, setChecked] = useState(true); * * return setChecked(event.target.checked)) /> * } * ``` */ declare const Checkbox: React.ForwardRefExoticComponent>; export default Checkbox;