import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1CompanyFormHeaderXGustoAPIVersion, GetV1CompanyFormRequest, GetV1CompanyFormResponse } from "../models/operations/getv1companyform.js"; export type CompanyFormsGetQueryData = GetV1CompanyFormResponse; export declare function prefetchCompanyFormsGet(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1CompanyFormRequest, options?: RequestOptions): Promise; export declare function buildCompanyFormsGetQuery(client$: GustoEmbeddedCore, request: GetV1CompanyFormRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyCompanyFormsGet(formId: string, parameters: { xGustoAPIVersion?: GetV1CompanyFormHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=companyFormsGet.core.d.ts.map