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