import type { Components, JSX } from "../types/components"; interface KlevuTextfield extends Components.KlevuTextfield, HTMLElement {} export const KlevuTextfield: { prototype: KlevuTextfield; new (): KlevuTextfield; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;