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