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