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