import { Observable } from 'rxjs';
import { SystemInfo } from './info.interface';
import { HttpClient } from "@angular/common/http";
import { BaseClient } from "../client";
export declare class InfoService {
    private http;
    private baseclient;
    private systemInfoOB;
    constructor(http: HttpClient, baseclient: BaseClient);
    getSystemInfo(): Observable<SystemInfo>;
    setSystemInfo(systemInfo: SystemInfo): void;
    initSystemInfo(): Promise<any>;
}
