import { OnInit } from '@angular/core'; import { MatDialogRef } from '@angular/material'; import { DriveRepresentation } from '../dtos/DriveRepresentation'; import { IcsDriveService } from '../ics-drive.service'; export declare class UploadModalComponent implements OnInit { dialogRef: MatDialogRef; uploadService: IcsDriveService; data: any; selectedFile: File; responseData: Array; driveData: any; showData: boolean; driveRepresentation: DriveRepresentation; file: any; files: Set; buttonDisabled: boolean; progress: any; canBeClosed: boolean; primaryButtonText: string; showCancelButton: boolean; uploading: boolean; uploadSuccessful: boolean; resultData: string; showFinish: boolean; showMultiple: boolean; showCloseButton: boolean; loader: boolean; driveHideButton: boolean; imgBaseUrl: string; constructor(dialogRef: MatDialogRef, uploadService: IcsDriveService, data: any); ngOnInit(): void; addFiles(): void; onFilesAdded(): void; closeDialog(): void; onSelect(value: any): void; connectDrive(): void; getFileExt(args: any): string; drop(ev: any): void; allowDrop(ev: any): void; }