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