import React from 'react';
import { CheckboxProps } from './Checkbox.types';
/**
 * Allow the user to select one or more items from a set
 */
declare const Checkbox: React.FC<CheckboxProps>;
export default Checkbox;
