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