import type { useEffect, useLayoutEffect } from 'react';
type EffectHookType = typeof useEffect | typeof useLayoutEffect;
export declare const createUpdateEffect: (hook: EffectHookType) => EffectHookType;
export default createUpdateEffect;