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