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