import { EventEmitter, OnChanges } from '@angular/core'; import { AttachmentsService } from '../../services/attachments.service'; import { FileUploadComponent } from '../file-upload/file-upload.component'; export declare class AttachmentsComponent implements OnChanges { private attacmentsService; constructor(attacmentsService: AttachmentsService); formGroup: any; config: any; deleteAttachment: EventEmitter; attachments: Array; uploadedAttachments: any[]; attachments_delete: any[]; allowedTypes: string[]; fileInput: FileUploadComponent; attachments_service_conatiner: any[]; get formControls(): any; ngOnChanges(): void; subscribeToFormChanges(): void; _handleReaderLoaded(file: any): void; ifFileExsits(attachments: any[], file: any): boolean; addFile(file: any): void; splitFile(file: any): { extension: any; name: any; }; isUploaded(file: any): boolean; deleteFile(file: any, index: any): void; } //# sourceMappingURL=attachments.component.d.ts.map