import { TimesheetDoc } from '~core/modules/timesheet'; import { Request } from 'express'; import { RestaurantService } from '~backend/business/restaurant/restaurant.service'; import { CouchdbStaticService } from '~backend/couchdb/couchdb-static/couchdb-static.service'; import { UpdateTimesheetDTO } from '~backend/employee/employee.model'; export declare class TimesheetController { private restaurantService; private readonly couchdbStaticService; constructor(restaurantService: RestaurantService, couchdbStaticService: CouchdbStaticService); getTimesheets(businessId: string, startTime: string, endTime: string, req: Request): Promise; updateTimesheetRecord(restaurantId: string, body: UpdateTimesheetDTO): Promise; }