import * as Request from '@trusted-solutions/sdit.models/dist/lambda/request'; import * as Response from '@trusted-solutions/sdit.models/dist/lambda/response'; import { LambdaClientService } from './lambda-client.service'; import { Method } from './models'; export declare class TsSditDataService { private client; constructor(client: LambdaClientService); readonly companyAdmin: { createStoreAdmin: Method; enableUser: Method; disableUser: Method; setUserPassword: Method; listStores: Method; listUserInGroup: Method; }; readonly store: { create: Method; update: Method; list: Method; verifyAdminPinCode: Method; setAdminPinCode: Method; }; readonly kiosk: { create: Method; list: Method; }; readonly config: { getTimeInfo: Method; synchronizeBlockStorage: Method; }; readonly productCategory: { create: Method; update: Method; reorder: Method; delete: Method; list: Method; }; readonly product: { create: Method; update: Method; reorder: Method; delete: Method; list: Method; soldOutSwitch: Method; }; readonly productAttributeCategory: { create: Method; update: Method; reorder: Method; delete: Method; }; readonly productAttribute: { updateInCategory: Method; list: Method; }; readonly invoice: { applyInvoiceNumber: Method; takeInvoiceNumber: Method; checkInvoiceNumber: Method; queryOfficeInfo: Method; queryLoveCode: Method; }; readonly order: { create: Method; attachPayment: Method; void: Method; update: Method; list: Method; /** * Deprecated: Using `list` method */ getRecentOrders: Method; /** * Deprecated: Using `list` method */ getOrdersByDatetimeRange: Method; /** * Deprecated: Using `list` method */ getOrdersByInvoiceNumber: Method; /** * Deprecated: Using `list` method */ getOrdersByReceiptNumber: Method; }; readonly shift: { closeShift: Method; getCurrentShiftClosing: Method; getRecentShiftClosings: Method; }; readonly TSCBIPayment: { pay: Method; refund: Method; query: Method; }; readonly TSCBOPayment: { pay: Method; refund: Method; query: Method; }; readonly analysis: { getDailySummary: Method; getAnalysisData: Method; }; }