import { useLayoutEffect } from 'react'; /** * Isomorphic layout effect hook. * Uses `useEffect` on the server and `useLayoutEffect` in the browser. * Do not produces errors/warnings on server. */ export declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;