import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetCompaniesDepartmentsHeaderXGustoAPIVersion, GetCompaniesDepartmentsRequest, GetCompaniesDepartmentsResponse } from "../models/operations/getcompaniesdepartments.js"; export type DepartmentsGetAllQueryData = GetCompaniesDepartmentsResponse; export declare function prefetchDepartmentsGetAll(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetCompaniesDepartmentsRequest, options?: RequestOptions): Promise; export declare function buildDepartmentsGetAllQuery(client$: GustoEmbeddedCore, request: GetCompaniesDepartmentsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyDepartmentsGetAll(companyUuid: string, parameters: { xGustoAPIVersion?: GetCompaniesDepartmentsHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=departmentsGetAll.core.d.ts.map