import type { TPaymentCurrency, TPrice } from '@blocklet/payment-types'; interface CrossSellCardProps { crossSellItem: TPrice; currency: TPaymentCurrency | null; exchangeRate: string | null; crossSellRequired: boolean; onAdd: () => Promise; } export default function CrossSellCard({ crossSellItem, currency, exchangeRate, crossSellRequired, onAdd, }: CrossSellCardProps): import("react").JSX.Element | null; export {};