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