/** @see https://foxact.skk.moe/use-typescript-happy-callback */ declare const useTypeScriptHappyCallback: (fn: (...args: Args) => R, deps: React.DependencyList) => (...args: Args) => R; /** @see https://foxact.skk.moe/use-typescript-happy-callback */ declare const useCallback: (fn: (...args: Args) => R, deps: React.DependencyList) => (...args: Args) => R; export { useCallback, useTypeScriptHappyCallback };