import * as React from 'react'; interface CheckboxProps extends Omit, 'type'> { label?: string; } declare const Checkbox: React.ForwardRefExoticComponent>; export { Checkbox, type CheckboxProps };