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