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