import { Service } from "../serviceSDK"; export declare class CashbookService extends Service { constructor(endpoint: string, orgId: string, storeId: string); searchTransactions(keyword: string, dateFrom: number, dateTo: number, currentPage: number, pageSize: number): Promise; getCashbookTransactionDetail(cashTransactionId: string): Promise; }