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