/** * Hook to detect if the current device is mobile. * SSR-safe: returns `false` on the server and updates on the client. */ declare const useMobile: () => boolean; export default useMobile;