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