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