import { HttpClient } from '@angular/common/http'; import { AuthHttp } from '@ztarmobile/zwp-services-auth'; import { IReceiptDetails } from '../models'; import * as i0 from "@angular/core"; export declare class OrdersService { private endpointUrl; private http; private aHttp; SHOP_V1_URL: any; ORDER_V1_URL: any; constructor(endpointUrl: string, http: HttpClient, aHttp: AuthHttp); /** * a method to purchase order for user cart * @returns order id */ purchaseOrder(purchaseDetails: any, mdn?: string): Promise; placeOrder(cart: any): Promise; getOrderReceipt(orderId: string): Promise; deleteOrderBydId(orderId: string, refund: boolean, reason: string): Promise; validateItemExistance(id: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }