import React from 'react'; interface CustomerProps { order: { customerFullName: string; customerEmail: string; customerUrl?: string; noShippingRequired: boolean; shippingAddress: { fullName: string; city: string; address1: string; address2?: string; postcode: string; telephone: string; province: { code: string; name: string; }; country: { code: string; name: string; }; }; billingAddress: { fullName: string; city: string; address1: string; address2?: string; postcode: string; telephone: string; province: { code: string; name: string; }; country: { code: string; name: string; }; }; }; } export default function Customer({ order: { noShippingRequired, shippingAddress, billingAddress, customerFullName, customerEmail, customerUrl } }: CustomerProps): React.JSX.Element; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query Query {\n order(uuid: getContextValue(\"orderId\")) {\n customerFullName\n customerEmail\n customerUrl\n noShippingRequired\n shippingAddress {\n fullName\n city\n address1\n address2\n postcode\n telephone\n province {\n code\n name\n }\n country {\n code\n name\n }\n }\n billingAddress {\n fullName\n city\n address1\n address2\n postcode\n telephone\n province {\n code\n name\n }\n country {\n code\n name\n }\n }\n }\n }\n"; export {};