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