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