import { DataFrame, Status } from '../DataFrame'; import { IRemoteStorageService, RemoteStorageDataEntry } from './IRemoteStorageService'; export declare class RemoteStorageService implements IRemoteStorageService { static readonly ServiceName: string; private _connection; private _localDb; constructor(); private GetLocalDbName; SaveAsync(resourceGuid: string, isGlobalForAllUsers: boolean, data: any): Promise; ReadAsync(resourceGuid: string, isGlobalForAllUsers: boolean, skipLocalChache: boolean): Promise | Status>; RemoveAsync(resourceGuid: string, isGlobalForAllUsers: boolean): Promise; GetServiceName(): string; } export declare class RemoteStorageDataEntryResponse extends DataFrame { ResourceGuid: string; Data: string; IsGlobal: boolean; InsertTime: Date; }