import { BillService as CoreBillService, BillRepository } from '~core/modules/order'; import { Bill as BillDoc } from '~core/modules/order/definitions'; import { CouchdbService } from '~backend/couchdb/couchdb.service'; import { ReadByStatusDto } from './bill.model'; export declare class BillService { private readonly couchdbService; repo: BillRepository; service: CoreBillService; constructor(couchdbService: CouchdbService); readByStatus(payload: ReadByStatusDto): Promise; findBetween({ start, end }: { start: any; end: any; }): Promise; findById(id: string): Promise; }