import { CreditTransaction } from '~backend/marketing/credit/credit.model'; import { CreditService } from '~backend/marketing/credit/credit.service'; import { StoreService } from '~backend/marketing/store/store.service'; import { QueryTransactionDto } from '../portal-api.model'; import { StoreTransaction } from '~backend/marketing/store/store.model'; export declare class TransactionController { private readonly storeService; private readonly creditService; constructor(storeService: StoreService, creditService: CreditService); getCredit(businessId: string, payload: QueryTransactionDto): Promise; getStore(businessId: string, payload: QueryTransactionDto): Promise; getOnlineStore(businessId: string, payload: QueryTransactionDto): Promise; }