import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1CompaniesAttachmentHeaderXGustoAPIVersion, GetV1CompaniesAttachmentRequest, GetV1CompaniesAttachmentResponse } from "../models/operations/getv1companiesattachment.js"; export type CompanyAttachmentsGetDetailsQueryData = GetV1CompaniesAttachmentResponse; export declare function prefetchCompanyAttachmentsGetDetails(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1CompaniesAttachmentRequest, options?: RequestOptions): Promise; export declare function buildCompanyAttachmentsGetDetailsQuery(client$: GustoEmbeddedCore, request: GetV1CompaniesAttachmentRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyCompanyAttachmentsGetDetails(companyId: string, companyAttachmentUuid: string, parameters: { xGustoAPIVersion?: GetV1CompaniesAttachmentHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=companyAttachmentsGetDetails.core.d.ts.map