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