import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1EmployeesEmployeeIdGarnishmentsHeaderXGustoAPIVersion, GetV1EmployeesEmployeeIdGarnishmentsRequest, GetV1EmployeesEmployeeIdGarnishmentsResponse } from "../models/operations/getv1employeesemployeeidgarnishments.js"; export type GarnishmentsListQueryData = GetV1EmployeesEmployeeIdGarnishmentsResponse; export declare function prefetchGarnishmentsList(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1EmployeesEmployeeIdGarnishmentsRequest, options?: RequestOptions): Promise; export declare function buildGarnishmentsListQuery(client$: GustoEmbeddedCore, request: GetV1EmployeesEmployeeIdGarnishmentsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyGarnishmentsList(employeeId: string, parameters: { xGustoAPIVersion?: GetV1EmployeesEmployeeIdGarnishmentsHeaderXGustoAPIVersion | undefined; page?: number | undefined; per?: number | undefined; }): QueryKey; //# sourceMappingURL=garnishmentsList.core.d.ts.map