import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1EmployeeFormPdfHeaderXGustoAPIVersion, GetV1EmployeeFormPdfRequest, GetV1EmployeeFormPdfResponse } from "../models/operations/getv1employeeformpdf.js"; export type EmployeeFormsGetPdfQueryData = GetV1EmployeeFormPdfResponse; export declare function prefetchEmployeeFormsGetPdf(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1EmployeeFormPdfRequest, options?: RequestOptions): Promise; export declare function buildEmployeeFormsGetPdfQuery(client$: GustoEmbeddedCore, request: GetV1EmployeeFormPdfRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyEmployeeFormsGetPdf(employeeId: string, formId: string, parameters: { xGustoAPIVersion?: GetV1EmployeeFormPdfHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=employeeFormsGetPdf.core.d.ts.map