import { UUIBooleanInputElement } from '@umbraco-ui/uui-boolean-input/lib'; /** * Umbraco checkbox, toggles between checked and uncheck * @element uui-checkbox * @fires UUIBooleanInputEvent#change - fires when the element is begin checked by a user action * @cssprop --uui-checkbox-size - To set the size of the checkbox. * @extends UUIBooleanInputElement */ export declare class UUICheckboxElement extends UUIBooleanInputElement { /** * This is a static class field indicating that the element is can be used inside a native form and participate in its events. It may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals. Read more about form controls here https://web.dev/more-capable-form-controls/ * @type {boolean} */ static readonly formAssociated = true; renderCheckbox(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { 'uui-checkbox': UUICheckboxElement; } }