import type { IFdtoTimesheet, UpdateTimesheetDTO } from "../../types/timesheet"; declare const TimesheetAPI: { readTimesheets(startIso: string, endIso: string): Promise; updateTimesheet(restaurantId: string, dto: UpdateTimesheetDTO): Promise; }; export default TimesheetAPI;