import { useEffect } from 'react'; /** * Uses `useLayoutEffect` in a browser and `useEffect` during server rendering. * * @remarks Selects the implementation at module evaluation time and never * reads browser globals while an effect is running. * @public */ export declare const useIsomorphicLayoutEffect: typeof useEffect;