import { InjectionToken } from '@angular/core'; import { Observable } from 'rxjs'; export declare const ARQUIVO_MANAGER_SERVICE: InjectionToken; export interface UploadEvent { type: 'progresso' | 'conclusao'; progresso?: number; attachment?: any; } export interface ArquivoManagerService { upload(file: File, ...agrupadores: string[]): Observable; downloadURL(attachment: any): Observable; fileName?(attachment: any): string; }