/** * React hook which returns the latest callback without changing the reference. */ declare function useLatestCallback(callback: T): T; export = useLatestCallback;