import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GetV1CompaniesAttachmentsHeaderXGustoAPIVersion, GetV1CompaniesAttachmentsRequest, GetV1CompaniesAttachmentsResponse } from "../models/operations/getv1companiesattachments.js"; export type CompanyAttachmentsGetListQueryData = GetV1CompaniesAttachmentsResponse; export declare function prefetchCompanyAttachmentsGetList(queryClient: QueryClient, client$: GustoEmbeddedCore, request: GetV1CompaniesAttachmentsRequest, options?: RequestOptions): Promise; export declare function buildCompanyAttachmentsGetListQuery(client$: GustoEmbeddedCore, request: GetV1CompaniesAttachmentsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyCompanyAttachmentsGetList(companyId: string, parameters: { xGustoAPIVersion?: GetV1CompaniesAttachmentsHeaderXGustoAPIVersion | undefined; }): QueryKey; //# sourceMappingURL=companyAttachmentsGetList.core.d.ts.map