import { OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { MatDialog } from '@angular/material/dialog'; import { DocumentosDragDropComponent } from 'projects/modulo-solicitudes/src/shared/components/documentos-drag-drop/documentos-drag-drop.component'; import { ImagenesService } from 'projects/modulo-solicitudes/src/shared/services/imagenes.service'; export declare class DocumentosComponent implements OnInit { private imagenesService; private dialog; child: DocumentosDragDropComponent; Documento: FormGroup; docProps: { nombre: string; extension: string; }; archivoId: String; urlsArray: []; docUrl: any; fileNames: any; showImageUpload: Boolean; maxSize: any; constructor(imagenesService: ImagenesService, dialog: MatDialog); ngOnInit(): void; loadFile(files: any): void; cleanDocument(): void; }