import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1BenefitsHeaderXGustoAPIVersion, GetV1BenefitsRequest, GetV1BenefitsResponse } from "../models/operations/getv1benefits.js"; export type CompanyBenefitsGetAllQueryData = GetV1BenefitsResponse; export declare function prefetchCompanyBenefitsGetAll(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1BenefitsRequest, options?: RequestOptions): Promise; export declare function buildCompanyBenefitsGetAllQuery(client$: GustoEmbeddedCore, request: GetV1BenefitsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyCompanyBenefitsGetAll(parameters: { xGustoAPIVersion?: GetV1BenefitsHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=companyBenefitsGetAll.core.d.ts.map