import { ICommonParams } from "../../../modules/IModule"; declare class SystemImpl { private static instance; private constructor(); static getModule(): SystemImpl; getDeviceInfo(obj: ICommonParams): void; startPage(obj: ICommonParams): void; exitPage(obj: ICommonParams): void; startBrowser(obj: ICommonParams): void; startToast(obj: ICommonParams): void; logDataCollection(obj: ICommonParams): void; getProperties(obj: ICommonParams): void; getAppInfo(obj: ICommonParams): void; getMemInfo(obj: ICommonParams): void; getLocation(obj: ICommonParams): void; } export default SystemImpl;