import { type InputHTMLAttributes } from "react"; export interface CheckboxProps extends InputHTMLAttributes { label?: string; } export declare const Checkbox: import("react").ForwardRefExoticComponent>;