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