import * as React from 'react'; import type { CheckboxProps } from './types'; declare const Checkbox: { (props: CheckboxProps): React.JSX.Element; displayName: string; }; export default Checkbox;