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