import { Moment } from "moment"; //#region src/core/interfaces/vertices/properties/week.d.ts type Week = { id: string; range: { start: Moment; end: Moment; }; number: number; string: string; excludedDays: { date: string; day: number; reason?: string; }[]; }; declare const allWeeks = "all"; type AllWeeks = typeof allWeeks; //#endregion export { AllWeeks, Week, allWeeks }; //# sourceMappingURL=week.d.ts.map