import { DeviceExtendedInfo, GeoCoordinates } from "..";
type DeviceHistory = {
    id: number;
    type: number;
    brand: string;
    os: string;
    extended_info: DeviceExtendedInfo;
    activity_type: number;
    application_version: string;
    serial_number: string;
    source_ip_address: string;
    geo_coordinates: GeoCoordinates;
    server_date: string;
    date_utc: string;
    client_date: string;
    update_date_utc: string;
    client_time_zone: string;
};
export type { DeviceHistory };
