import { OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { STColumn } from '@delon/abc/st'; import { NzMessageService } from 'ng-zorro-antd/message'; import { NzModalService } from 'ng-zorro-antd/modal'; import { NzNotificationService } from 'ng-zorro-antd/notification'; import { ShowyePageApiService } from '@showye/showye-page-base'; export declare class DictionaryComponent implements OnInit { private api; private fb; private router; private route; msg: NzMessageService; notify: NzNotificationService; dicts: never[]; columns: STColumn[]; showModal: boolean; form: FormGroup; content: any; dictCols: any[]; constructor(modalSrv: NzModalService, api: ShowyePageApiService, fb: FormBuilder, router: Router, route: ActivatedRoute, msg: NzMessageService, notify: NzNotificationService); reloadColumn(): void; ngOnInit(): void; reloadDictionary(): void; updateDictionary(): void; popModal(data?: any): void; delete(id: any): void; }