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