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