import { HttpService } from './http.service'; import { FileSaveResponseData } from './fileInterface'; export declare class LocalFileJson { httpSrv: HttpService; FILE_NAME: string; constructor(httpSrv: HttpService); getRelativePath(): string; delete(): Promise; read(): Promise; save(data: any): Promise; }