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 LlmVectorStoresListFilesQueryData = components.VectorStoreFileList; export declare function prefetchLlmVectorStoresListFiles(queryClient: QueryClient, client$: SDKCore, request: operations.ListVectorStoreFilesRequest, options?: RequestOptions): Promise; export declare function buildLlmVectorStoresListFilesQuery(client$: SDKCore, request: operations.ListVectorStoreFilesRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmVectorStoresListFiles(vectorStoreId: string, parameters: { limit?: number | undefined; order?: operations.ListVectorStoreFilesQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; filter?: operations.Filter | undefined; xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmVectorStoresListFiles.core.d.ts.map