import React from 'react'; interface CustomerInfoProps { order: { orderNumber: string; customerFullName: string; customerEmail: string; paymentMethodName: string; noShippingRequired: boolean; shippingAddress: { fullName: string; postcode: string; telephone: string; country: { name: string; code: string; }; province: { name: string; code: string; }; city: string; address1: string; address2: string; }; billingAddress: { fullName: string; postcode: string; telephone: string; country: { name: string; code: string; }; province: { name: string; code: string; }; city: string; address1: string; address2: string; }; }; } export default function CustomerInfo({ order: { orderNumber, customerFullName, customerEmail, paymentMethodName, noShippingRequired, shippingAddress, billingAddress } }: CustomerInfoProps): 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 customerFullName\n customerEmail\n paymentMethodName\n noShippingRequired\n shippingNote\n shippingAddress {\n fullName\n postcode\n telephone\n country {\n name\n code\n }\n province {\n name\n code\n }\n city\n address1\n address2\n }\n billingAddress {\n fullName\n postcode\n telephone\n country {\n name\n code\n }\n province {\n name\n code\n }\n city\n address1\n address2\n }\n }\n }\n"; export {};