import { WorkTimeType } from './types'; export declare class WorkTime { id: string; type: WorkTimeType; weekday: number; startTime: string; endTime: string; constructor(); } export declare class TimeTable { [period: string]: { [weekName: string]: boolean; }; }