/** * Hook to refresh the passport using query invalidation mechanism. * By calling the refresh function, the latest data will be refetched as soon as possible. * * @example * const { refreshCurrentAccount, refreshUsdConversion } = useRefreshPassport() * * // Call this function to refresh the current account * const handlerefreshCurrentAccount = async () => { * await refreshCurrentAccount() * } */ export declare function useRefreshPassport(): { refreshCurrentAccount: () => Promise; refreshUsdConversion: () => Promise; refreshBorrowData: () => Promise; refreshTokensBalances: () => Promise; }; //# sourceMappingURL=useRefreshPassport.d.ts.map