/**
 * A schedule class to store the schedule data
 * @param {string} schedule the schedule data
 * @const {schedule} the converted format of the schedule data
 *
 */
import Meeting from "./Meeting.js";
type ScheduleElement = string | null;
export default class Schedule {
    text: ScheduleElement;
    meetings: Meeting[];
    constructor(scheduleObj: any);
    private _parseSchedule;
}
export {};
//# sourceMappingURL=Schedule.d.ts.map