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 { buildLlmVectorStoresGetQuery, LlmVectorStoresGetQueryData, prefetchLlmVectorStoresGet, queryKeyLlmVectorStoresGet } from "./llmVectorStoresGet.core.js"; export { buildLlmVectorStoresGetQuery, type LlmVectorStoresGetQueryData, prefetchLlmVectorStoresGet, queryKeyLlmVectorStoresGet, }; export type LlmVectorStoresGetQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Retrieve a vector store * * @remarks * Retrieves a vector store by its ID. */ export declare function useLlmVectorStoresGet(request: operations.GetVectorStoreRequest, options?: QueryHookOptions): UseQueryResult; /** * Retrieve a vector store * * @remarks * Retrieves a vector store by its ID. */ export declare function useLlmVectorStoresGetSuspense(request: operations.GetVectorStoreRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresGetData(client: QueryClient, queryKeyBase: [ vectorStoreId: string, parameters: { xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresGetQueryData): LlmVectorStoresGetQueryData | undefined; export declare function invalidateLlmVectorStoresGet(client: QueryClient, queryKeyBase: TupleToPrefixes<[ vectorStoreId: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresGet(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresGet.d.ts.map