import { DependencyList } from 'react';
/**
 * Hook that memoizes the result of an async function.
 * @param factory Async function of which the result should be memoized.
 * @param deps Dependency list
 * @returns Current result or `undefined` if not available.
 */
export declare function useAsyncMemo<T>(factory: () => Promise<T>, deps: DependencyList): T | undefined;
