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