import type { EffectCallback } from 'react'; import * as React from 'react'; type UseCompatibleInsertionEffect = (renderEffect: EffectCallback, effect: (polyfill?: boolean) => ReturnType, deps: React.DependencyList) => void; declare const useCompatibleInsertionEffect: UseCompatibleInsertionEffect; export default useCompatibleInsertionEffect;