/// import { Cart } from '../travelcloud'; import { Order as OrderType } from '../types'; export declare function formatCurrency(x: any, decimalPlace?: number): string; export declare const Order: ({ order, config, cart, hidePaymentErrors, showSection }: { order: OrderType; config?: any; cart?: Cart; hidePaymentErrors?: boolean; showSection?: { status?: boolean; contact?: boolean; products?: boolean; remove?: boolean; message?: boolean; travelers?: boolean; payments?: boolean; }; }) => JSX.Element;