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