import { CouchdbService } from '~backend/couchdb/couchdb.service'; import { SlotService as CoreSlotService } from '~core/modules/slot'; import { Slot, SlotDoc } from './slot.model'; export declare class SlotService { private readonly couchdbService; core: CoreSlotService; constructor(couchdbService: CouchdbService); all(): Promise; getDineQrUrl(name: string): string; create(data: Slot): Promise; update(data: SlotDoc): Promise; delete(id: string): Promise; }