import { LookupModel } from '../../../shared/models/lookup-model'; export declare class SchoolApplication { id: number; schoolApplicationId: number; federalTaxId: string; schoolName: string; siteType: LookupModel[]; schoolType: LookupModel; oversiteEntity: LookupModel; schoolGrant: LookupModel[]; entranceExitCounselings: LookupModel[]; schoolLoan: LookupModel; schoolCode: string; borough: LookupModel; schoolStartDate: string; schoolEndDate: string; expirationDate: string; address: string; city: string; state: LookupModel; zip: string; contactLname: string; contactFname: string; phone: string; ext: string; email: string; fax: string; ssn: string; applicationDate: string; approvalDate: string; status: LookupModel; isSubmit: boolean; canSave?: boolean; canUpdate?: boolean; constructor(data: unknown); }