import React from 'react'; import './Summary.scss'; import { Order } from '@components/frontStore/customer/CustomerContext.jsx'; interface SummaryProps { order: Order; } export default function Summary({ order }: SummaryProps): React.JSX.Element; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query Query {\n order (uuid: getContextValue('orderId')) {\n orderNumber\n discountAmount {\n text\n }\n coupon\n shippingMethodName\n shippingFeeInclTax {\n text\n }\n shippingFeeExclTax {\n text\n }\n totalTaxAmount {\n text\n }\n subTotal {\n text\n }\n subTotalInclTax {\n text\n }\n grandTotal {\n text\n }\n items {\n uuid\n productName\n thumbnail\n productSku\n qty\n productUrl\n productPrice {\n text\n }\n productPriceInclTax {\n text\n }\n variantOptions {\n attributeCode\n attributeName\n attributeId\n optionId\n optionText\n }\n lineTotalInclTax {\n text\n }\n lineTotal {\n text\n }\n }\n }\n }\n"; export {};