import type { useEffect, useLayoutEffect } from "react";
declare const createEffectWithTarget: (useEffectType: typeof useEffect | typeof useLayoutEffect) => (effect: EffectCallback, deps: DependencyList, target: any) => void;
export default createEffectWithTarget;