/** * The general-purpose Checkbox component. * This component turns on/off the label depends on the prop: label. * * Also extends the props of `` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox */ export declare const Checkbox: import("react").ForwardRefExoticComponent<{ label?: string; indeterminate?: boolean; } & Omit, HTMLInputElement>, "ref"> & import("react").RefAttributes>;