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