import React from 'react'; interface StripeRefundButtonProps { refundAPI: string; order: { paymentStatus: { code: string; }; orderId: string; paymentMethod: string; grandTotal: { value: number; currency: string; }; }; } export default function StripeRefundButton({ refundAPI, order: { paymentStatus, orderId, paymentMethod, grandTotal } }: StripeRefundButtonProps): React.JSX.Element; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query Query {\n refundAPI: url(routeId: \"refundPaymentIntent\")\n order(uuid: getContextValue(\"orderId\")) {\n orderId\n grandTotal {\n value\n currency\n }\n paymentStatus {\n code\n }\n paymentMethod\n }\n }\n"; export {};