export declare const GetCartMock: { request: { query: import("graphql").DocumentNode; variables: { cartID: string; directCheckout: boolean; }; }; result: { data: { ID: string; cart: { ID: string; pointEarned: null; lineItems: { title: string; SKU: string; slug: string; quantity: number; imageURL: string; price: { code: string; value: number; }; salePrice: { code: string; value: number; }; discount: { code: string; value: number; }; maxDiscountedItem: number; availableStock: number; ignoreStock: boolean; errorMessage: string; }[]; invalidItems: never[]; payment: { fee: { code: string; value: number; }; provider: null; service: null; uniqueCode: null; }; totalCost: { code: string; value: number; }; billingAddress: { districtCode: string; email: string; name: string; phone: string; postalCode: string; street: string; location: { province: string; city: string; district: string; }; latLong: string; coordinate: { latitude: string; longitude: string; }; }; deliveryAddress: { districtCode: string; email: string; name: string; phone: string; postalCode: string; street: string; location: { province: string; city: string; district: string; }; latLong: string; coordinate: { latitude: string; longitude: string; }; }; promo: { totalDiscount: { code: string; value: number; }; appliedPromos: never[]; }; shipping: { provider: null; service: null; cost: { code: string; value: number; }; }; totalWeight: { unit: string; value: number; }; totalVolume: { length: number; height: number; width: number; unit: string; }; }; }[]; }; };