import { Types } from "./types/index.js"; import { OutTypes } from "./from/schedules.js"; import { export_default } from "./to/index.js"; //#region src/sdui/index.d.ts declare class SduiMap { static from: { schedules: (schedule: Types.schedule) => { divisions: OutTypes.division; groups: OutTypes.group[]; teachers: OutTypes.teacher[]; locations: OutTypes.location[]; courses: OutTypes.course[]; events: OutTypes.event[]; exceptions: OutTypes.exception[]; }; hours: (hour: Types.hour) => void; substitutionPlans: (substitutionPlan?: Types.substitutionPlan) => OutTypes.exception[]; classes: (group: Types.classes) => OutTypes.group; teachers: (teacher: Types.teacher) => OutTypes.teacher; subjects: (subject: Types.subject) => void; rooms: (room: Types.room) => OutTypes.location; courses: (course: Types.course) => OutTypes.course; lessons: (lesson: Types.lesson) => OutTypes.event; holidays: (holiday: Types.holiday) => OutTypes.exception; schoolYears: (schoolYear: Types.schoolYear) => OutTypes.division; }; static to: typeof export_default; } //#endregion export { SduiMap }; //# sourceMappingURL=index.d.ts.map