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