import { BillService } from '~backend/bill/bill.service'; import { BillMetaService } from '~backend/billMeta/billMeta.service'; export declare class ReceiptController { private readonly billService; private readonly billMetaService; constructor(billService: BillService, billMetaService: BillMetaService); getReceipts(restaurantId: string, start: string, end: string): Promise; findReceipt(receiptId: string): Promise; }