type DeviceType = "Chrome" | "Firefox" | "Safari"; export declare function useDevice(): { os: DeviceType; isMobileApp: boolean; }; export {};