import { Platform } from 'ionic-angular'; import { AppVersion } from '@ionic-native/app-version'; import { Device } from '@ionic-native/device'; import { Store } from './store'; export declare class Env { store: Store; device: Device; appVersion: AppVersion; platform: Platform; is: any; version: any; ip: any; clientId: any; isInApp: any; readyResolve: any; ipApi: any; baseApi: any; testVersion: string; config: any; constructor(store: Store, device: Device, appVersion: AppVersion, platform: Platform); setConfig: (config: any) => void; init: (baseApi: any, ipApi: any) => Promise; getEnvTitle: (title: any) => any; setInApp: (isInApp: any) => void; ready: () => Promise<{}>; getIp: () => any; setIp: () => any; getAppVersion: () => Promise; getClientId: () => Promise; }