import { KoraElement } from "../../base/kora-element.js"; import type { KoraSwitchState } from "./template.js"; /** . Native checkbox+role=switch; `change` bubbles natively. */ export declare class KoraSwitch extends KoraElement { #private; static get observedAttributes(): string[]; protected initialState(): KoraSwitchState; 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-switch": KoraSwitch; } } //# sourceMappingURL=kora-switch.d.ts.map