export declare const GetOrderDetailMock: { request: { query: import("graphql").DocumentNode; variables: { IDs: number; }; }; result: { data: { orders: { ID: string; createdAt: number; paymentStatus: null; status: string; paymentRecords: never[]; lineItems: { title: string; SKU: string; price: { code: string; value: number; }; imageURL: string; quantity: number; }[]; buyerNote: string; deliveryAddress: { name: string; email: string; phone: string; street: string; formattedLocation: string; postalCode: string; }; billingAddress: { name: string; email: string; phone: string; street: string; formattedLocation: string; postalCode: string; }; shipping: { provider: string; service: string; cost: { code: string; value: number; }; AWBNumber: string; }; convertedPoint: number; discount: { code: string; value: number; }; payment: { provider: string; uniqueCode: number; fee: { code: string; value: number; }; }; totalCost: { code: string; value: number; }; }[]; }; }; };