export interface UserAgentInfo { userAgent: string; platform: string; language: string; cookieEnabled: boolean; onLine: boolean; screenResolution: string; colorDepth: number; timezone: string; timestamp: string; } export declare const getUserAgentInfo: () => UserAgentInfo;