import { useEffect } from "react"; /** * Custom hook that uses either `useLayoutEffect` or `useEffect` based on the environment (client-side or server-side). */ export declare const useIsomorphicLayoutEffect: typeof useEffect;