import { QueryKey, UseQueryOptions, UseQueryResult } from "@tanstack/react-query"; import type { GetCurrentAccountResponse, RewardsMats } from "../api"; type GetCurrentAccountResponseWithMats = GetCurrentAccountResponse & { mats: RewardsMats[]; totalMats: number; }; type UseGetCurrentAccountOptions = Omit, "queryKey" | "queryFn">; /** * Hook to fetch current account with mats */ export declare function useGetCurrentAccount(options?: UseGetCurrentAccountOptions): UseQueryResult & { queryKey: QueryKey; }; export {}; //# sourceMappingURL=useGetCurrentAccount.d.ts.map