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