import type { IDevice, IOS } from 'ua-parser-js'; export declare enum PlatformType { Apple = "apple", Android = "android", Windows = "windows" } export declare function getUserAgent(): { browser: import("ua-parser-js").IBrowser; os: IOS; device: IDevice; }; export declare function isUserAgentWindows(userAgentOS: IOS): boolean; export declare function isUserAgentApple(userAgentOS: IOS): boolean; export declare function isUserAgentAndroid(userAgentOS: IOS): boolean; export declare function isUserAgentMobile(userAgentDevice: IDevice): boolean; export declare function getPlatformType(): PlatformType | undefined;