/** * Replacement for useCallback use case with empty array, * it memoize only the first function passed. * https://github.com/facebook/react/issues/15278. * * @param callback - The function to memoize. * @returns - The memoized function. */ export declare function useFunction any>(callback: T): T;