import { OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { AbstractComponent, TabService } from '@prutech/components'; import { Observable } from 'rxjs'; import { LookupModel } from '../../shared/models/lookup-model'; import { CreateSchoolApplicationComponent } from './components/create-school-application/create-school-application.component'; import { SchoolApplication } from './models/school-application.model'; import { SchoolApplicationService } from './services/school-application.service'; import * as i0 from "@angular/core"; export declare class SchoolApplicationDetailsComponent extends AbstractComponent implements OnInit { private tabService; private route; private router; private schoolApplicationService; readonly add: string; readonly view: string; addMode: boolean; viewMode: boolean; schoolApplication: SchoolApplication; schoolApplicationLoading: Observable; schoolApplicationComponent: CreateSchoolApplicationComponent; schoolApplicationData: SchoolApplication; canUserRoleEdit: boolean; get enableFormSubmit(): boolean; constructor(tabService: TabService, route: ActivatedRoute, router: Router, schoolApplicationService: SchoolApplicationService); ngOnInit(): void; getSchoolSiteType(sitetype: LookupModel[]): string[]; exit(): void; submitSchool(): void; get errorMessages(): string[]; afterOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }