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