/// <reference types="web2cal" />
/// <reference types="core-js" />
import { EventModel } from "./event.model";
export declare class Group {
    id: string;
    name: string;
    constructor(id: string, name: string);
    show: boolean;
    color: web2cal.ItemColor;
    private _events;
    events: Array<EventModel>;
    toGroupData(): web2cal.GroupData;
}
