/// export interface SlidingShoppingCartProps { cartItems?: any; heading?: string; isAnyCartItemsQuantityModifiable: boolean; onChangeQuantity: (item: any, quantity: number) => void; onGoToCart: () => void; onRemoveItem: (item: any) => void; totalPriceFirstInvoice: number; totalPriceMonthly: number; totalPriceUpfront: number; totalVAT: number; totalPriceWithoutVAT: number; formatPrice: (price: string | number) => string; hasPaid?: boolean; disclaimers?: any; shouldShowCart: boolean; setShouldShowCart(shouldShowCart: boolean): void; discount?: { label: string; price: number; }; buttonText?: string; buttonInfo?: string; } declare const SlidingShoppingCart: ({ cartItems, heading, isAnyCartItemsQuantityModifiable, onChangeQuantity, onGoToCart, onRemoveItem, totalPriceFirstInvoice, totalPriceMonthly, totalPriceUpfront, totalVAT, totalPriceWithoutVAT, formatPrice, hasPaid, disclaimers, discount, shouldShowCart, setShouldShowCart, buttonText, buttonInfo, }: SlidingShoppingCartProps) => JSX.Element; export default SlidingShoppingCart;