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