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