import { DeviceTypeEnum } from '../../enums/base/deviceTypeEnum';
import { OperatingSystemTypeEnum } from '../../enums/base/operatingSystemTypeEnum';
export declare class TokenDeviceClientInfoDtoModel {
    securityKey: string;
    clientMACAddress: string;
    notificationId: string;
    osType: OperatingSystemTypeEnum;
    deviceType: DeviceTypeEnum;
    packageName: string;
    appBuildVer: number;
    appSourceVer: string;
    country: string;
    locationLat: string;
    locationLong: string;
    simCard: string;
    language: string;
    deviceBrand: string;
}
