/** * Polyfill of React's experimental `useEffectEvent`: returns a callback with a * stable identity that always invokes the latest `fn`. Lets effects and * handlers read fresh props/state without re-subscribing or re-creating * callbacks. Pure — no DOM. * * Ref: https://stackoverflow.com/questions/76335194 */ export declare function useEffectEvent(fn: (...args: Args) => Return): (...args: Args) => Return; //# sourceMappingURL=useEffectEvent.d.ts.map