import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetAchTransactionsHeaderXGustoAPIVersion, GetAchTransactionsRequest, GetAchTransactionsResponse } from "../models/operations/getachtransactions.js"; export type AchTransactionsGetAllQueryData = GetAchTransactionsResponse; export declare function prefetchAchTransactionsGetAll(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetAchTransactionsRequest, options?: RequestOptions): Promise; export declare function buildAchTransactionsGetAllQuery(client$: GustoEmbeddedCore, request: GetAchTransactionsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyAchTransactionsGetAll(companyUuid: string, parameters: { xGustoAPIVersion?: GetAchTransactionsHeaderXGustoAPIVersion | undefined; contractorPaymentUuid?: string | undefined; payrollUuid?: string | undefined; transactionType?: string | undefined; paymentDirection?: string | undefined; page?: number | undefined; per?: number | undefined; }): QueryKey; //# sourceMappingURL=achTransactionsGetAll.core.d.ts.map