import { type EffectCallback } from 'react'; /** * Run an effect only once (on initial mount). * * @param effect the effect to execute */ declare const useMountEffect: (effect: EffectCallback) => void; export default useMountEffect;