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