import Location from "./Location.js";
declare type MeetingElement = string | null;
export default class Meeting {
    raw: MeetingElement;
    startTime: MeetingElement;
    endTime: MeetingElement;
    startDate: MeetingElement;
    endDate: MeetingElement;
    days: string[];
    location: Location | null;
    constructor(options: object);
    private _parseMeeting;
}
export {};
//# sourceMappingURL=Meeting.d.ts.map