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