import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { Office } from '../../office.model'; import { User } from '../../../user/user.model'; export declare class DistrictEditComponent implements OnInit, OnChanges { district: Office; representative: User; editing: { name: boolean; repName: boolean; repIcon: boolean; }; updated: { name: string; repName: string; repIcon: string; }; ngOnChanges(changes: SimpleChanges): void; constructor(); ngOnInit(): void; }