import { DependencyList } from 'react';
export type UseOnceOptions<E> = {
    deps?: DependencyList;
    initial?: Partial<E>;
};
export declare function useOnce<E>(f: () => Promise<E>, options?: UseOnceOptions<E>): [E];
