/** * Returns a memoized callback that wraps the latest version of the input * callback. * @param callback The callback to memoize. * @returns The memoized callback. */ export declare function useLatestCallback(callback: T): T;