export function fetchTimesheetLine({ searchValue, timesheetId, page, }: { searchValue?: any; timesheetId: any; page?: number; }): Promise; export function createTimesheetLine({ timesheetLine }: { timesheetLine: any; }): Promise; export function updateTimesheetLine({ timesheetLineId, timesheetLine }: { timesheetLineId: any; timesheetLine: any; }): Promise; export function deleteTimesheetLine({ timesheetLineId }: { timesheetLineId: any; }): Promise;