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 { buildLlmVectorStoresListQuery, LlmVectorStoresListQueryData, prefetchLlmVectorStoresList, queryKeyLlmVectorStoresList } from "./llmVectorStoresList.core.js"; export { buildLlmVectorStoresListQuery, type LlmVectorStoresListQueryData, prefetchLlmVectorStoresList, queryKeyLlmVectorStoresList, }; export type LlmVectorStoresListQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List vector stores * * @remarks * Retrieves a paginated list of all vector stores for the authenticated user. */ export declare function useLlmVectorStoresList(request: operations.ListVectorStoresRequest, options?: QueryHookOptions): UseQueryResult; /** * List vector stores * * @remarks * Retrieves a paginated list of all vector stores for the authenticated user. */ export declare function useLlmVectorStoresListSuspense(request: operations.ListVectorStoresRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresListData(client: QueryClient, queryKeyBase: [ parameters: { limit?: number | undefined; order?: operations.ListVectorStoresQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresListQueryData): LlmVectorStoresListQueryData | undefined; export declare function invalidateLlmVectorStoresList(client: QueryClient, queryKeyBase: TupleToPrefixes<[ parameters: { limit?: number | undefined; order?: operations.ListVectorStoresQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresList(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresList.d.ts.map