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