import type { useEffect, useLayoutEffect } from '@taro-hooks/core'; type EffectHookType = typeof useEffect | typeof useLayoutEffect; export declare const createUpdateEffect: (hook: EffectHookType) => EffectHookType; export {};