import { PrepareHookFunction } from './types'; import { DependencyList } from 'react'; export interface PreparedEffectOptions { runSync?: boolean; serverOnly?: boolean; } declare const usePreparedEffect: (identifier: string, prepareFunction: PrepareHookFunction, deps?: DependencyList, { runSync, serverOnly }?: PreparedEffectOptions) => void; export default usePreparedEffect;