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