import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetDepartmentHeaderXGustoAPIVersion, GetDepartmentRequest, GetDepartmentResponse } from "../models/operations/getdepartment.js"; export type DepartmentsGetQueryData = GetDepartmentResponse; export declare function prefetchDepartmentsGet(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetDepartmentRequest, options?: RequestOptions): Promise; export declare function buildDepartmentsGetQuery(client$: GustoEmbeddedCore, request: GetDepartmentRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyDepartmentsGet(departmentUuid: string, parameters: { xGustoAPIVersion?: GetDepartmentHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=departmentsGet.core.d.ts.map