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