/** * Query hook for getting borrow data. Returns collateral and trove debt for the * connected account, based on it's evm address. * @param queryOptions Query options passed to the underlying `useQuery` hook. */ export declare function useBorrowData(queryOptions?: {}): import("wagmi").UseReadContractsReturnType; /** * Hook for for invalidating current user's borrow data. Can be used to * invalidate borrow data manually, which forces the data to be re-fetched. * @returns Function `invalidateBorrowData` for invalidating the borrow data */ export declare function useInvalidateBorrowData(): { invalidateBorrowData: () => Promise; }; /** * Hook for for resetting current user's borrow data. Can be used to reset * borrow data manually, which forces the data to be re-fetched. * @returns Function `resetBorrowData` for resetting the borrow data */ export declare function useResetBorrowData(): { resetBorrowData: () => Promise; }; //# sourceMappingURL=useBorrowData.d.ts.map