export declare class Group {
    id: number;
    content: string;
    treeLevel: number;
    className: string;
    nestedGroups: string[];
    constructor(id: number, content: string, treeLevel: number, className: string, nestedGroups: string[]);
}
//# sourceMappingURL=group.d.ts.map