import { InternalIdKey } from "../types/common/index.js"; import { InternalKeysOmitted } from "./util.js"; import { Types } from "../types/index.js"; //#region src/core/to/schedules.d.ts declare namespace OutTypes { type division = Omit, InternalIdKey>; type settings = InternalKeysOmitted; type configuration = InternalKeysOmitted; type exception = InternalKeysOmitted; type period = InternalKeysOmitted; type location = InternalKeysOmitted; type teacher = InternalKeysOmitted; type group = InternalKeysOmitted; type person = InternalKeysOmitted; type course = InternalKeysOmitted; type event = InternalKeysOmitted; type lockedTime = InternalKeysOmitted; type rootInterval = InternalKeysOmitted; type syllabus = InternalKeysOmitted; type linkedEventsSet = InternalKeysOmitted; } type Out = { division?: OutTypes.division; settings?: OutTypes.settings; exceptions?: OutTypes.exception[]; periods?: OutTypes.period[]; locations?: OutTypes.location[]; teachers?: OutTypes.teacher[]; groups?: OutTypes.group[]; persons?: OutTypes.person[]; courses?: OutTypes.course[]; events?: OutTypes.event[]; lockedTimes?: OutTypes.lockedTime[]; rootIntervals?: OutTypes.rootInterval[]; syllabuses?: OutTypes.syllabus[]; configurations?: OutTypes.configuration[]; linkedEventsSets?: OutTypes.linkedEventsSet[]; meta: { structure: string; }; }; declare function export_default(schedule: Partial): Out; //#endregion export { export_default }; //# sourceMappingURL=schedules.d.ts.map