import Timetrack from './resources/timetrack'; interface IWeekList { start_of_week: string; end_of_week: string; total_week: number; is_current_week: boolean; entries: { [x: string]: { total_day: number; entries: Timetrack[]; }; }; } export declare type WeekList = IWeekList[]; export {};