import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { QueryHookOptions, SuspenseQueryHookOptions, TupleToPrefixes } from "./_types.js"; import { buildLlmVectorStoresListFilesQuery, LlmVectorStoresListFilesQueryData, prefetchLlmVectorStoresListFiles, queryKeyLlmVectorStoresListFiles } from "./llmVectorStoresListFiles.core.js"; export { buildLlmVectorStoresListFilesQuery, type LlmVectorStoresListFilesQueryData, prefetchLlmVectorStoresListFiles, queryKeyLlmVectorStoresListFiles, }; export type LlmVectorStoresListFilesQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List files in a vector store * * @remarks * Retrieves a paginated list of all files in a specific vector store. */ export declare function useLlmVectorStoresListFiles(request: operations.ListVectorStoreFilesRequest, options?: QueryHookOptions): UseQueryResult; /** * List files in a vector store * * @remarks * Retrieves a paginated list of all files in a specific vector store. */ export declare function useLlmVectorStoresListFilesSuspense(request: operations.ListVectorStoreFilesRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresListFilesData(client: QueryClient, queryKeyBase: [ vectorStoreId: string, parameters: { limit?: number | undefined; order?: operations.ListVectorStoreFilesQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; filter?: operations.Filter | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresListFilesQueryData): LlmVectorStoresListFilesQueryData | undefined; export declare function invalidateLlmVectorStoresListFiles(client: QueryClient, queryKeyBase: TupleToPrefixes<[ vectorStoreId: string, parameters: { limit?: number | undefined; order?: operations.ListVectorStoreFilesQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; filter?: operations.Filter | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresListFiles(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresListFiles.d.ts.map