import { useEffect } from 'react'; /** * useLayoutEffect will show warning if used during SSR, e.g. with Next.js. * useSafeLayoutEffect removes it by replacing useLayoutEffect with useEffect during SSR. * * Mantine calls this 'useIsomorphicEffect', hence the double export. */ export declare const useSafeLayoutEffect: typeof useEffect; export declare const useIsomorphicEffect: typeof useEffect; //# sourceMappingURL=useSafeLayoutEffect.d.ts.map