export declare const isChrome: () => boolean; type Browser = 'Chrome' | 'Firefox'; export declare const getBrowser: () => Browser | null; type Platform = 'Android' | 'IOS'; export declare const getPlatform: () => Platform | null; export {};