import { Employee, Report, Timesheet } from "../models";
export declare function getTimesheet(date: string, employees: Employee[]): Timesheet;
export declare function getOvertime(timesheet: Timesheet[], regularDayHours: number): Report;
