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