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