import { Biutor } from '../libs/mobius-utils'; export interface DeviceGeoFromCloudflare { fl: string; h: string; ip: string; /** * Timestamp of request (in seconds) * @example * 1639906878.062 */ ts: string; visit_scheme: string; /** * User agent * @example * Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36 Edg/96.0.1054.57 */ uag: string; colo: string; http: string; /** * Location * @example * US */ loc: string; tls: string; sni: string; warp: string; gateway: string; } /** * @refer https://dataflowkit.com/blog/determine-location-of-users/ */ export declare const getDeviceGeoFromCloudflare: () => Biutor; export interface DeviceScreenInfo { width: number; height: number; } export declare const getDeviceScreenInfo: () => DeviceScreenInfo; //# sourceMappingURL=device.data.d.ts.map