import DeviceData from "../model/DeviceData"; declare class DeviceDataJSON { readonly platform?: string; readonly system?: string; readonly systemVersion?: string; readonly manufacturer?: string; readonly deviceModel?: string; readonly appVersion?: string; readonly sdkVersion?: string; readonly vendorId?: string; readonly advertisingId?: string; readonly pushToken?: string; readonly cloudId?: string; readonly carrierId?: string; readonly timezone?: string; readonly language?: string; readonly isNewInstall?: boolean; readonly properties?: string; } declare class DeviceDataJsonTransformer { static toJSON(deviceData: DeviceData): DeviceDataJSON; static fromJSON(json: DeviceDataJSON): DeviceData; static reviver(key: string, value: any): any; } export default DeviceDataJsonTransformer;