import { OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { ActivatedRoute, Router } from '@angular/router'; import { Group } from './group.model'; import { GroupService } from './group.service'; import { MeetingService } from '../meeting/meeting.service'; import { AppFocusService } from '../core/focus.service'; import { AuthService } from '../user/auth.service'; import { FollowService } from '../shared/services/follow.service'; import { Title } from '@angular/platform-browser'; export declare class GroupPage implements OnInit { private groupSvc; private followSvc; private meetingSvc; private router; private route; private focusSvc; private authSvc; private title; group$: Observable; isAdmin: Observable; numFollows$: Observable; isFollowing$: Observable; baseUrl: Observable; constructor(groupSvc: GroupService, followSvc: FollowService, meetingSvc: MeetingService, router: Router, route: ActivatedRoute, focusSvc: AppFocusService, authSvc: AuthService, title: Title); ngOnInit(): void; addFollow(): void; unfollow(): void; }