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