import { KoraElement } from "../../base/kora-element.js"; import type { KoraCheckboxState } from "./template.js"; /** . Wraps a native checkbox; `change` bubbles natively. */ export declare class KoraCheckbox extends KoraElement { #private; static get observedAttributes(): string[]; protected initialState(): KoraCheckboxState; protected template(): string; get checked(): boolean; set checked(value: boolean); attributeChangedCallback(name: string, _old: string | null, value: string | null): void; protected hydrate(): void; protected update(): void; } declare global { interface HTMLElementTagNameMap { "kora-checkbox": KoraCheckbox; } } //# sourceMappingURL=kora-checkbox.d.ts.map