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