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