import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1CompaniesAttachmentUrlHeaderXGustoAPIVersion, GetV1CompaniesAttachmentUrlRequest, GetV1CompaniesAttachmentUrlResponse } from "../models/operations/getv1companiesattachmenturl.js"; export type CompanyAttachmentGetDownloadUrlQueryData = GetV1CompaniesAttachmentUrlResponse; export declare function prefetchCompanyAttachmentGetDownloadUrl(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1CompaniesAttachmentUrlRequest, options?: RequestOptions): Promise; export declare function buildCompanyAttachmentGetDownloadUrlQuery(client$: GustoEmbeddedCore, request: GetV1CompaniesAttachmentUrlRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyCompanyAttachmentGetDownloadUrl(companyId: string, companyAttachmentUuid: string, parameters: { xGustoAPIVersion?: GetV1CompaniesAttachmentUrlHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=companyAttachmentGetDownloadUrl.core.d.ts.map