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