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