/** * 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: currency */ import { FormikHelpers } from "formik"; import { QueryClient } from "react-query"; import * as currency from "./index"; import { RemoteRequestOption, IDeleteResponse, core, 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 useCurrency({ options, query, execFn }: { options: RemoteRequestOption; query?: any; }, queryClient: QueryClient, execFn?: ExecApi): { queryClient: QueryClient; priceTagsQuery: import("react-query").UseQueryResult, unknown>; priceTagByUniqueIdQuery: import("react-query").UseQueryResult, unknown>; mutationPostPriceTag: import("react-query").UseMutationResult, IResponse, currency.PriceTagEntity, unknown>; submitPostPriceTag: (values: currency.PriceTagEntity, formikProps?: FormikHelpers) => Promise>; mutationPatchPriceTag: import("react-query").UseMutationResult, IResponse, currency.PriceTagEntity, unknown>; submitPatchPriceTag: (values: currency.PriceTagEntity, formikProps?: FormikHelpers) => Promise>; mutationPatchPriceTags: import("react-query").UseMutationResult>, IResponse>, core.BulkRecordRequest, unknown>; submitPatchPriceTags: (values: core.BulkRecordRequest, formikProps?: FormikHelpers>) => Promise>>; mutationDeletePriceTag: import("react-query").UseMutationResult; submitDeletePriceTag: (values: string[], formikProps?: FormikHelpers) => Promise; };