import { EventEmitter, OnInit, TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; export declare class FileListComponent implements OnInit { fileEl: HTMLInputElement; files: FileListItem[]; removable: boolean; template: TemplateRef; onClick: EventEmitter; onRemoveAll: EventEmitter; onRemove: EventEmitter; loadImage: boolean; imageShow: any; attachmentArr: any; ngOnInit(): void; clickFile(file: FileListItem, event: any): void; removeAllFile(file: any): void; removeFile(file: any): void; addFiles(files: FileList | File[]): void; convertGallery(arr: any): void; private _initFileEl; private _readImageBase64; _fileIsImage(file: FileListItem): boolean | undefined; viewImage(): void; currentImage(image: any): void; next(attachmentArr: any, image: any): void; prev(attachmentArr: any, image: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface FileListItem extends File { id?: string; url?: string; image?: boolean; }