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