import { Observable } from 'rxjs'; import { DataConfig } from './../models/config'; export declare class DataService { private config; private helpers; constructor(dataConfig: DataConfig); private get; private post; updateToken(tenantId: string, accessToken: string): void; getCurrentlyPromotions(saleDate: any): Observable; getGroupByCustomer(customerId: string): Observable; getCustomerPoint(customerId: string): Observable; savePosOrder(order: any): Observable; saveOnlineOrder(order: any): Observable; updateOnlineOrder(order: any): Observable; getOnlineOrders(orderQuery: any): Observable; getProductVariantsByIds(itemIds: string[], includeStockInfo: boolean): Observable; getProductById(productId: string): Observable; getCurrentStockByIds(ids: string[]): Observable; getPosOrder(id: string): Observable; getToppingGroups(): Observable; }