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