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