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