import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1EmployeeFormsHeaderXGustoAPIVersion, GetV1EmployeeFormsRequest, GetV1EmployeeFormsResponse } from "../models/operations/getv1employeeforms.js"; export type EmployeeFormsListQueryData = GetV1EmployeeFormsResponse; export declare function prefetchEmployeeFormsList(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1EmployeeFormsRequest, options?: RequestOptions): Promise; export declare function buildEmployeeFormsListQuery(client$: GustoEmbeddedCore, request: GetV1EmployeeFormsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyEmployeeFormsList(employeeId: string, parameters: { xGustoAPIVersion?: GetV1EmployeeFormsHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=employeeFormsList.core.d.ts.map