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