/** * This is an auto generate file from fireback project. * You can use this in order to communicate in backend, it gives you available actions, * and their types * Module: wallet */ import { QueryClient } from "react-query"; import * as wallet from "./index"; import { RemoteRequestOption, IResponse, ExecApi, IResponseList } from "../../core/http-tools"; /** * Gives you formik forms, all mutations, submit actions, and error handling, * and provides internal store for all changes happens through this * for modules */ export declare function useWallet({ options, query, execFn }: { options: RemoteRequestOption; query?: any; }, queryClient: QueryClient, execFn?: ExecApi): { queryClient: QueryClient; virtualTransactionsQuery: import("react-query").UseQueryResult, unknown>; virtualTransactionByUniqueIdQuery: import("react-query").UseQueryResult, unknown>; };