export declare const usePromise: (promiseFn: () => Promise) => { data: T | null; error: any; loading: boolean; reload: () => void; };