import { InternalIdKey } from "../../core/types/common/index.js"; import { Types } from "../../core/types/index.js"; import { Schedule } from "../types/schedules.js"; //#region src/Additio/from/schedules.d.ts declare namespace OutTypes { type location = Omit; type teacher = Omit; type group = Omit; type course = Omit; type event = Omit; type person = Omit; } declare function export_default(schedule: Omit): { meta: { errors: string[]; }; locations?: undefined; teachers?: undefined; groups?: undefined; courses?: undefined; events?: undefined; persons?: undefined; } | { locations: OutTypes.location[]; teachers: OutTypes.teacher[]; groups: OutTypes.group[]; courses: OutTypes.course[]; events: OutTypes.event[]; persons: OutTypes.person[]; meta: { warnings?: string[] | undefined; errors?: string[] | undefined; }; }; //#endregion export { export_default }; //# sourceMappingURL=schedules.d.ts.map