import { OnInit } from '@angular/core'; import { IndexService, CardSize } from '../index.service'; export interface PeriodicElement { uid: number; name: string; portrait: string; address: string; code: string; phone: number; duty: string; remark: string; } export declare class DataListComponent implements OnInit { svr: IndexService; hostClass: boolean; navName: string; navSize: CardSize; displayedColumns: string[]; dataSource: PeriodicElement[]; constructor(svr: IndexService); ngOnInit(): void; }