import { Observable } from 'rxjs'; export declare abstract class NgtAttachmentHttpService { abstract preview(attachment: any): Observable; abstract download(attachment: any): Observable; abstract upload(file: any, remoteResource?: any): Observable; } export interface NgtAttachmentHttpResponse { data?: any; }