/** * Hook that detects whether your React component is being rendered in a client-side or server-side environment. * * Useful for handling logic that should *only* be executed in the browser, such as DOM manipulations or accessing browser APIs. */ declare function useIsBrowser(): { isBrowser: boolean; }; export default useIsBrowser;