import Device from "./Device"; declare class DeviceData { 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?: object; constructor(platform?: string, system?: string, systemVersion?: string, manufacturer?: string, deviceModel?: string, appVersion?: string, sdkVersion?: string, vendorId?: string, advertisingId?: string, pushToken?: string, cloudId?: string, carrierId?: string, timezone?: string, language?: string, isNewInstall?: boolean, properties?: object); static fromDevice(device: Device): DeviceData; } export default DeviceData;