/// import { ICartDelivery } from './types'; export interface MonthlyPriceDetailsProps { totalPriceMonthly?: number; monthlyPriceDetails?: { label: string; value: string; }[]; formatPrice: (price: string | number) => string; } export interface ShoppingCartPaymentSectionProps { delivery?: ICartDelivery; totalPriceFirstInvoice?: number; totalPriceMonthly?: number; paymentTooltip?: string; monthlyPriceDetails?: { label: string; value: string; }[]; totalPriceUpfront?: number; totalVAT?: number; totalPriceWithoutVAT?: number; hasPaid?: boolean; formatPrice: (price: string | number) => string; } export default function ShoppingCartPaymentSection({ delivery, totalPriceUpfront, totalPriceMonthly, totalPriceFirstInvoice, paymentTooltip, monthlyPriceDetails, totalVAT, totalPriceWithoutVAT, hasPaid, formatPrice, }: ShoppingCartPaymentSectionProps): JSX.Element;