import IGroup, { IGroupConfig, IHoliday } from "./iGroup";
import ICalendarApp from "../calendar/ICalendarApp";
export default class GroupImpl implements IGroup {
    id: string;
    config: IGroupConfig;
    calendarApp: ICalendarApp;
    constructor(id: string, config?: IGroupConfig, calendar?: ICalendarApp);
    fetchHolidays(): Array<IHoliday>;
}
