import React from 'react'; import type { ElasticPathOrder } from '../types'; interface EPOrderSummaryProps { order?: ElasticPathOrder; className?: string; style?: React.CSSProperties; showTitle?: boolean; showItems?: boolean; showCustomer?: boolean; showAddresses?: boolean; compact?: boolean; } export declare function EPOrderSummary({ order, className, style, showTitle, showItems, showCustomer, showAddresses, compact }: EPOrderSummaryProps): React.JSX.Element; export default EPOrderSummary;