import React from 'react'; declare const Total: React.FC<{ total: string; totalTaxAmount: string; priceIncludingTax: boolean; }>; declare const Tax: React.FC<{ showPriceIncludingTax: boolean; amount: string; }>; declare const Subtotal: React.FC<{ subTotal: string; }>; declare const Discount: React.FC<{ discountAmount: string; coupon: string | undefined; }>; declare const Shipping: React.FC<{ method: string | undefined; cost: string | undefined; }>; declare const OrderTotalSummary: React.FC<{ subTotal: string; discountAmount: string; coupon: string | undefined; shippingMethod: string | undefined; shippingCost: string | undefined; taxAmount: string; total: string; }>; export { OrderTotalSummary, Subtotal, Discount, Shipping, Tax, Total };