/**
 * `useUnmountEffect` runs the provided callback function when the component unmounts.
 *
 * @param fn - The function to execute on unmount.
 */
declare const useUnmountEffect: (fn: () => void) => void;
export default useUnmountEffect;
