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