import { EventEmitter, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core'; import { CalEvent } from "../utils/model/CalEvent"; import { BsModalRef, BsModalService } from "ngx-bootstrap/modal"; import { FileListComponent } from "inet-ui"; import * as i0 from "@angular/core"; export declare class AttachmentListComponent implements OnChanges, OnDestroy { private modalService; calEvent?: CalEvent; fileEl?: HTMLInputElement; removable?: boolean; fileList: FileListComponent; deleteAttachment: EventEmitter; files: any[]; modalRef: BsModalRef; confirmMessage?: string; private _file; constructor(modalService: BsModalService); ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; viewAttachment(file: any, event: any): void; removeAttachment(file: any, template: TemplateRef): void; removeFile(): void; private _attachmentToFiles; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }