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