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