import { EventEmitter, OnInit } from "@angular/core"; import { NzMessageService, UploadFile } from 'ng-zorro-antd'; import { YztUploadFile } from "./interface"; export declare class YztUploadComponent implements OnInit { private msg; private BASEURL; action: string; loading: boolean; avatarUrl: string; previewImage: string; previewVisible: boolean; _fileList: YztUploadFile[] | string; type: string; valueType: string; fileSize: number; fileNum: number; fileAccept: string; disabled: boolean; fileType: string; multiple: boolean; beforeUpload: any; removeHandler: any; uploadLabel: string; fileList: YztUploadFile[] | string; fileListChange: EventEmitter; onChange: EventEmitter; constructor(msg: NzMessageService, BASEURL: any); ngOnInit(): void; handlePreview: (file: UploadFile) => void; private getBase64(img, callback); handleChange(info: { file: UploadFile; fileList: any[]; }): void; getYztUploadFiles(files?: any): YztUploadFile[] | string; }