import { HttpService } from './http.service'; import * as i0 from "@angular/core"; export interface MongoWriteData { database: string; collection: string; payload: any; } export interface MongoWhereData { key: string; oper: string; value: any; } export interface MongoReadData { database: string; where: string; } export interface MongoUpdateData { database: string; where: string; update: any; } export declare class MongoService { private httpService; constructor(httpService: HttpService); write(data: MongoWriteData): Promise; read(data: MongoReadData): Promise; delete(data: MongoReadData): Promise; update(data: MongoUpdateData): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }