import { OnInit } from '@angular/core'; export declare type Datatype = { district: string; votes: { yes: number; no: number; }; comments: { pro: number; con: number; }; }; export declare class DistrictInputTableComponent implements OnInit { data: Datatype[]; constructor(); ngOnInit(): void; }