/**
* Specify {@link UwcInputElement#type | `[type=checkbox]`} to render a checkbox.
*
* @example
* A plain and simple checkbox.
*
* ```html
*
* ```
*
* @example
* An indeterminate checkbox
*
* ```html
*
* ```
*
* One notable difference from regular `` elements is that ``
* will always set at least `"true"` | `"false"` into the nearest form.
*
* @example
* ```html
*
*
* ```
*
* @module
*/
import { Connect } from "../uwc-input";
/**
* @internal
*/
export declare const connectCheckbox: Connect;