import { OnInit, AfterViewInit, EventEmitter } from '@angular/core'; import { UploadFile, UploaderOptions, UploadInput, UploadOutput } from 'ngx-uploader'; import { ACCom } from '../../../../services/ac-com.service'; import { ACLanguageService } from '../../../../services/ac-language.service'; export declare class ACLogbookAdminComponent implements AfterViewInit, OnInit { ACCom: ACCom; private ACLang; formData: FormData; files: UploadFile[]; filecontent: any; last_key: string; fname: string; uploadstatus: string; downloadstatus: string; uploadInput: EventEmitter; humanizeBytes: Function; dragOver: boolean; options: UploaderOptions; cbDownloadStateOpen: boolean; cbDownloadStateClosed: boolean; uploadoption: { value: string; viewValue: string; }[]; uploadoptionselection: string; hasAccess: boolean; constructor(ACCom: ACCom, ACLang: ACLanguageService); ngAfterViewInit(): void; ngOnInit(): void; fileContent(output: any): void; onUploadOutput(output: UploadOutput): void; startUpload(): void; cancelUpload(id: string): void; removeFile(id: string): void; removeAllFiles(): void; OnUpload(event: any): void; OnDownload(event: any): void; private Upload; private Download; private getDateStringFromSqlDate; }