import { PaymentService } from '~backend/payment/payment.service'; import { BillService } from '~backend/bill/bill.service'; export declare class BillController { private readonly billService; private readonly paymentService; constructor(billService: BillService, paymentService: PaymentService); refetchTransaction(billId: string): Promise; }