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