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