import type { Components, JSX } from "../types/components";

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