import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export type LlmVectorStoresListFilesInBatchQueryData = components.VectorStoreFileList; export declare function prefetchLlmVectorStoresListFilesInBatch(queryClient: QueryClient, client$: SDKCore, request: operations.ListVectorStoreFilesInBatchRequest, options?: RequestOptions): Promise; export declare function buildLlmVectorStoresListFilesInBatchQuery(client$: SDKCore, request: operations.ListVectorStoreFilesInBatchRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmVectorStoresListFilesInBatch(vectorStoreId: string, batchId: string, parameters: { limit?: number | undefined; order?: operations.ListVectorStoreFilesInBatchQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; filter?: operations.QueryParamFilter | undefined; xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmVectorStoresListFilesInBatch.core.d.ts.map