import { InputHTMLAttributes } from 'react'; export interface CheckboxProps extends Omit, 'type' | 'size'> { label?: string; indeterminate?: boolean; } export declare const Checkbox: import('react').ForwardRefExoticComponent>;