import { OnInit } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { UserToGroupService, UserToGroupRelation } from '@schoolbelle/api/user-to-group'; export declare class GroupInfoComponent implements OnInit { utg: UserToGroupService; form: FormGroup; showPurchaseType: boolean; accountId: FormControl; toExistingGroup: FormControl; purchaseType: FormControl; groupType: FormControl; groupName: FormControl; groupAddress: FormControl; group_types: string[]; constructor(utg: UserToGroupService); adminSchools: UserToGroupRelation[]; ngOnInit(): void; }