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